aboutsummaryrefslogtreecommitdiff
path: root/jobs/basejob.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-03-31 15:41:16 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-03-31 15:41:16 +0900
commit9d8900197e69e9c0ffaaff6f63a40cb80cf08fb1 (patch)
tree91a1223ec55810011bcb4bd1e2d6f582fbfe8708 /jobs/basejob.cpp
parente7868adbf5b275f66529fb2dae323ed8aeb69e05 (diff)
downloadlibquotient-9d8900197e69e9c0ffaaff6f63a40cb80cf08fb1.tar.gz
libquotient-9d8900197e69e9c0ffaaff6f63a40cb80cf08fb1.zip
BaseJob::gotReply(): Minor fix in logging
Diffstat (limited to 'jobs/basejob.cpp')
-rw-r--r--jobs/basejob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/jobs/basejob.cpp b/jobs/basejob.cpp
index 3cde7c50..a23f43b3 100644
--- a/jobs/basejob.cpp
+++ b/jobs/basejob.cpp
@@ -285,7 +285,7 @@ void BaseJob::gotReply()
// Shortcut to retry instead of executing finishJob()
stop();
qCWarning(d->logCat)
- << this << "will retry in" << retryInterval;
+ << this << "will retry in" << retryInterval << "ms";
d->retryTimer.start(retryInterval);
emit retryScheduled(d->retriesTaken, retryInterval);
return;