Upload: Remove bandwidth quota debug message #4837
authorMarkus Goetz <markus@woboq.com>
Wed, 18 May 2016 14:17:52 +0000 (16:17 +0200)
committerMarkus Goetz <markus@woboq.com>
Wed, 18 May 2016 14:18:13 +0000 (16:18 +0200)
src/libsync/propagateupload.cpp

index 4062def3a6753362a405eccdde5f1df7e98e5f9b..bd2f29b96588404c0d05fb2f830ecd166e80f261 100644 (file)
@@ -398,7 +398,7 @@ qint64 UploadDevice::readData(char* data, qint64 maxlen) {
     if (isBandwidthLimited()) {
         maxlen = qMin(maxlen, _bandwidthQuota);
         if (maxlen <= 0) {  // no quota
-            qDebug() << "no quota";
+            //qDebug() << "no quota";
             return 0;
         }
         _bandwidthQuota -= maxlen;