change format of debug message

This commit is contained in:
Stephen Birarda 2016-10-11 13:23:52 -07:00
parent 20ea7e6c98
commit 504e92607a

View file

@ -164,7 +164,7 @@ void AssetResourceRequest::onDownloadProgress(qint64 bytesReceived, qint64 bytes
int percentage = roundf((float) bytesReceived / (float) bytesTotal * 100.0f);
qCDebug(networking).nospace() << "Progress for " << _url.path() << " - "
<< bytesReceived << " bytes of " << bytesTotal << " - " << percentage << "%";
<< bytesReceived << " of " << bytesTotal << " bytes - " << percentage << "%";
_lastProgressDebug = now;
}