diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-06-30 08:38:32 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-06-30 08:38:32 +0000 |
| commit | 546b1c8b1f6609de1f98560798022dcce4c405a4 (patch) | |
| tree | 958cc508ab4ceb5024718c22c3d052cc7e03ef94 /src | |
| parent | f53bff4a5811429b0287c305d7f2e39f8d6bc4eb (diff) | |
| download | qmmp-546b1c8b1f6609de1f98560798022dcce4c405a4.tar.gz qmmp-546b1c8b1f6609de1f98560798022dcce4c405a4.tar.bz2 qmmp-546b1c8b1f6609de1f98560798022dcce4c405a4.zip | |
removed useless debug messages
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@988 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
| -rw-r--r-- | src/plugins/General/scrobbler/scrobbler.cpp | 12 | ||||
| -rw-r--r-- | src/qmmp/soundcore.cpp | 1 |
2 files changed, 1 insertions, 12 deletions
diff --git a/src/plugins/General/scrobbler/scrobbler.cpp b/src/plugins/General/scrobbler/scrobbler.cpp index e9a909f84..34defb2b0 100644 --- a/src/plugins/General/scrobbler/scrobbler.cpp +++ b/src/plugins/General/scrobbler/scrobbler.cpp @@ -235,7 +235,7 @@ void Scrobbler::processResponse(int id, bool error) if (!strlist[0].contains("OK") || strlist.size() < 4) { qWarning("Scrobbler[%s]: handshake phase error: %s",qPrintable(m_name), qPrintable(strlist[0])); - //TODO badtime handling + //TODO: badtime handling return; } if (strlist.size() > 3) //process handshake response @@ -247,10 +247,6 @@ void Scrobbler::processResponse(int id, bool error) m_submitUrl = strlist[3]; m_nowPlayingUrl = strlist[2]; m_session = strlist[1]; - /*if(m_submitUrl.endsWith("/")) - m_submitUrl.removeLast(); - if(m_nowPlayingUrl.trnkate("/")) - m_nowPlayingUrl.takeLast();*/ updateMetaData(); //send now-playing notification for already playing song if (!m_songCache.isEmpty()) //submit recent songs submit(); @@ -353,9 +349,6 @@ void Scrobbler::submit() header.setValue("Host",url.host()); header.setValue("Accept", "*/*"); header.setContentLength(QUrl::toPercentEncoding(body,":/[]&=%").size()); - qDebug("Scrobbler[%s]: submit request header", qPrintable(m_name)); - qDebug("%s",qPrintable(header.toString().trimmed())); - qDebug("*****************************"); m_submitid = m_http->request(header, QUrl::toPercentEncoding(body,":/[]&=%")); } @@ -377,9 +370,6 @@ void Scrobbler::sendNotification(const SongInfo &info) header.setValue("Host",url.host()); header.setValue("Accept", "*/*"); header.setContentLength(QUrl::toPercentEncoding(body,":/[]&=%").size()); - qDebug("Scrobbler[%s]: Now-Playing notification request header", qPrintable(m_name)); - qDebug("%s",qPrintable(header.toString().trimmed())); - qDebug("*****************************"); m_notificationid = m_http->request(header, QUrl::toPercentEncoding(body,":/[]&=%")); } diff --git a/src/qmmp/soundcore.cpp b/src/qmmp/soundcore.cpp index a3a1c5f5d..7c8061d7b 100644 --- a/src/qmmp/soundcore.cpp +++ b/src/qmmp/soundcore.cpp @@ -224,7 +224,6 @@ void SoundCore::pause() void SoundCore::seek(qint64 pos) { - qDebug("SoundCore: seek = %lld", pos); if (m_output && m_output->isRunning()) { m_output->mutex()->lock (); |
