mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
Upload: Remove bandwidth quota debug message #4837
This commit is contained in:
parent
30c8fa1c93
commit
a038c99232
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue