mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 09:33:36 +02:00
Add time unit in debug
This commit is contained in:
parent
3f5394281b
commit
0de4c02e8d
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ void Resource::handleReplyFinished() {
|
|||
if (_attempts++ < MAX_ATTEMPTS) {
|
||||
auto waitTime = BASE_DELAY_MS * (int)pow(2.0, _attempts);
|
||||
qDebug().nospace() << "Retrying to load the asset in " << waitTime
|
||||
<< ", attempt " << _attempts << " of " << MAX_ATTEMPTS;
|
||||
<< "ms, attempt " << _attempts << " of " << MAX_ATTEMPTS;
|
||||
QTimer::singleShot(waitTime, this, &Resource::attemptRequest);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue