From 0de4c02e8d46bf02222181f2c084df0b2661657f Mon Sep 17 00:00:00 2001 From: Atlante45 Date: Mon, 31 Aug 2015 23:24:14 +0200 Subject: [PATCH] Add time unit in debug --- libraries/networking/src/ResourceCache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/networking/src/ResourceCache.cpp b/libraries/networking/src/ResourceCache.cpp index 1b1dae5beb..18135cf6df 100644 --- a/libraries/networking/src/ResourceCache.cpp +++ b/libraries/networking/src/ResourceCache.cpp @@ -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; }