mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-27 07:44:34 +02:00
Convert some qDebug calls
This commit is contained in:
@@ -109,7 +109,7 @@ ScanManager::onSettingsChanged()
|
|||||||
void
|
void
|
||||||
ScanManager::runStartupScan()
|
ScanManager::runStartupScan()
|
||||||
{
|
{
|
||||||
qDebug() << Q_FUNC_INFO;
|
tLog( LOGVERBOSE ) << Q_FUNC_INFO;
|
||||||
if ( !Database::instance() || ( Database::instance() && !Database::instance()->isReady() ) )
|
if ( !Database::instance() || ( Database::instance() && !Database::instance()->isReady() ) )
|
||||||
QTimer::singleShot( 1000, this, SLOT( runStartupScan() ) );
|
QTimer::singleShot( 1000, this, SLOT( runStartupScan() ) );
|
||||||
else
|
else
|
||||||
@@ -120,7 +120,7 @@ ScanManager::runStartupScan()
|
|||||||
void
|
void
|
||||||
ScanManager::scanTimerTimeout()
|
ScanManager::scanTimerTimeout()
|
||||||
{
|
{
|
||||||
qDebug() << Q_FUNC_INFO;
|
tLog( LOGVERBOSE ) << Q_FUNC_INFO;
|
||||||
if ( !TomahawkSettings::instance()->watchForChanges() ||
|
if ( !TomahawkSettings::instance()->watchForChanges() ||
|
||||||
!Database::instance() ||
|
!Database::instance() ||
|
||||||
( Database::instance() && !Database::instance()->isReady() ) )
|
( Database::instance() && !Database::instance()->isReady() ) )
|
||||||
|
Reference in New Issue
Block a user