1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-26 23:35:32 +02:00

Convert some qDebug calls

This commit is contained in:
Jeff Mitchell
2012-06-26 08:42:42 -04:00
parent 2302f0eb41
commit 856b6cc164

View File

@@ -109,7 +109,7 @@ ScanManager::onSettingsChanged()
void
ScanManager::runStartupScan()
{
qDebug() << Q_FUNC_INFO;
tLog( LOGVERBOSE ) << Q_FUNC_INFO;
if ( !Database::instance() || ( Database::instance() && !Database::instance()->isReady() ) )
QTimer::singleShot( 1000, this, SLOT( runStartupScan() ) );
else
@@ -120,7 +120,7 @@ ScanManager::runStartupScan()
void
ScanManager::scanTimerTimeout()
{
qDebug() << Q_FUNC_INFO;
tLog( LOGVERBOSE ) << Q_FUNC_INFO;
if ( !TomahawkSettings::instance()->watchForChanges() ||
!Database::instance() ||
( Database::instance() && !Database::instance()->isReady() ) )