From d86fdded4b08b1111684da9a18949234c5c0bf7c Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 13 Apr 2015 08:24:19 +0200 Subject: [PATCH] Don't spam the log if VLC detects total-time changed. This can happen a lot. --- src/libtomahawk/audio/AudioOutput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/audio/AudioOutput.cpp b/src/libtomahawk/audio/AudioOutput.cpp index 483c1b06a..8ce2a467e 100644 --- a/src/libtomahawk/audio/AudioOutput.cpp +++ b/src/libtomahawk/audio/AudioOutput.cpp @@ -321,7 +321,7 @@ AudioOutput::setCurrentTime( qint64 time ) m_currentTime = time; emit tick( time ); - // tDebug() << Q_FUNC_INFO << "Current time : " << m_currentTime << " / " << m_totalTime; + // tDebug() << Q_FUNC_INFO << "Current time:" << m_currentTime << "/" << m_totalTime; // FIXME pt 2 : we use temporary variable to avoid overriding m_totalTime // in the case it is < 0 (which means that the media is not seekable) @@ -353,7 +353,7 @@ AudioOutput::totalTime() const void AudioOutput::setTotalTime( qint64 time ) { - tDebug() << Q_FUNC_INFO << time; +// tDebug() << Q_FUNC_INFO << time; if ( time <= 0 ) {