Upload: Remove bandwidth quota debug message #4837

This commit is contained in:
Markus Goetz 2016-05-18 16:17:52 +02:00
parent 30c8fa1c93
commit a038c99232

View 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;