mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-04 21:27:58 +02:00
Move more logging to verbose level
This commit is contained in:
@@ -103,13 +103,13 @@ DirLister::scanDir( QDir dir, int depth )
|
|||||||
DirListerThreadController::DirListerThreadController( QObject *parent )
|
DirListerThreadController::DirListerThreadController( QObject *parent )
|
||||||
: QThread( parent )
|
: QThread( parent )
|
||||||
{
|
{
|
||||||
tDebug() << Q_FUNC_INFO;
|
tDebug( LOGVERBOSE ) << Q_FUNC_INFO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
DirListerThreadController::~DirListerThreadController()
|
DirListerThreadController::~DirListerThreadController()
|
||||||
{
|
{
|
||||||
tDebug() << Q_FUNC_INFO;
|
tDebug( LOGVERBOSE ) << Q_FUNC_INFO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -161,7 +161,7 @@ MusicScanner::MusicScanner( MusicScanner::ScanMode scanMode, const QStringList&
|
|||||||
|
|
||||||
MusicScanner::~MusicScanner()
|
MusicScanner::~MusicScanner()
|
||||||
{
|
{
|
||||||
tDebug() << Q_FUNC_INFO;
|
tDebug( LOGVERBOSE ) << Q_FUNC_INFO;
|
||||||
|
|
||||||
if ( m_dirListerThreadController )
|
if ( m_dirListerThreadController )
|
||||||
{
|
{
|
||||||
@@ -208,7 +208,7 @@ MusicScanner::setFileMtimes( const QMap< QString, QMap< unsigned int, unsigned i
|
|||||||
void
|
void
|
||||||
MusicScanner::scan()
|
MusicScanner::scan()
|
||||||
{
|
{
|
||||||
tDebug( LOGEXTRA ) << "Num saved file mtimes from last scan:" << m_filemtimes.size();
|
tDebug( LOGVERBOSE ) << "Num saved file mtimes from last scan:" << m_filemtimes.size();
|
||||||
|
|
||||||
connect( this, SIGNAL( batchReady( QVariantList, QVariantList ) ),
|
connect( this, SIGNAL( batchReady( QVariantList, QVariantList ) ),
|
||||||
SLOT( commitBatch( QVariantList, QVariantList ) ), Qt::DirectConnection );
|
SLOT( commitBatch( QVariantList, QVariantList ) ), Qt::DirectConnection );
|
||||||
|
Reference in New Issue
Block a user