diff options
author | Aaron McCarthy <aaron.mccarthy@nokia.com> | 2010-02-03 01:58:27 (GMT) |
---|---|---|
committer | Aaron McCarthy <aaron.mccarthy@nokia.com> | 2010-02-03 07:01:35 (GMT) |
commit | 038e81412918dafaf50eaf7f9d6757e2677e4bb6 (patch) | |
tree | 98606ee6ceb17c95489116397272f035a30a963d /src/network/access/qnetworkreplyimpl.cpp | |
parent | 8f5c1dd293b046e7f51d12b767464345c253943f (diff) | |
download | Qt-038e81412918dafaf50eaf7f9d6757e2677e4bb6.zip Qt-038e81412918dafaf50eaf7f9d6757e2677e4bb6.tar.gz Qt-038e81412918dafaf50eaf7f9d6757e2677e4bb6.tar.bz2 |
Remove debug.
Diffstat (limited to 'src/network/access/qnetworkreplyimpl.cpp')
-rw-r--r-- | src/network/access/qnetworkreplyimpl.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/network/access/qnetworkreplyimpl.cpp b/src/network/access/qnetworkreplyimpl.cpp index 5d52913..fbe90ef 100644 --- a/src/network/access/qnetworkreplyimpl.cpp +++ b/src/network/access/qnetworkreplyimpl.cpp @@ -87,7 +87,6 @@ void QNetworkReplyImplPrivate::_q_startOperation() // backend failed to start because the session state is not Connected. // QNetworkAccessManager will call reply->backend->start() again for us when the session // state changes. - qDebug() << "Waiting for session for" << url; state = WaitingForSession; if (!manager->d_func()->session->isOpen()) @@ -556,8 +555,6 @@ void QNetworkReplyImplPrivate::finished() // if we don't know the total size of or we received everything save the cache if (totalSize.isNull() || totalSize == -1 || bytesDownloaded == totalSize) completeCacheSave(); - else - qDebug() << "Not saving cache."; // note: might not be a good idea, since users could decide to delete us // which would delete the backend too... |