1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

* Only log dtors in verbose mode.

This commit is contained in:
Christian Muehlhaeuser
2013-04-22 08:07:58 +02:00
parent e9fa70cc94
commit f0fdb47f4e
2 changed files with 2 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ Query::Query( const QString& query, const QID& qid )
Query::~Query() Query::~Query()
{ {
tDebug() << Q_FUNC_INFO << toString(); tDebug( LOGVERBOSE ) << Q_FUNC_INFO << toString();
QMutexLocker lock( &m_mutex ); QMutexLocker lock( &m_mutex );
m_ownRef.clear(); m_ownRef.clear();

View File

@@ -91,7 +91,7 @@ Track::Track( const QString& artist, const QString& track, const QString& album,
Track::~Track() Track::~Track()
{ {
tDebug() << Q_FUNC_INFO << toString(); tDebug( LOGVERBOSE ) << Q_FUNC_INFO << toString();
} }