diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-31 15:41:16 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-31 15:41:16 +0900 |
commit | 9d8900197e69e9c0ffaaff6f63a40cb80cf08fb1 (patch) | |
tree | 91a1223ec55810011bcb4bd1e2d6f582fbfe8708 /jobs/basejob.cpp | |
parent | e7868adbf5b275f66529fb2dae323ed8aeb69e05 (diff) | |
download | libquotient-9d8900197e69e9c0ffaaff6f63a40cb80cf08fb1.tar.gz libquotient-9d8900197e69e9c0ffaaff6f63a40cb80cf08fb1.zip |
BaseJob::gotReply(): Minor fix in logging
Diffstat (limited to 'jobs/basejob.cpp')
-rw-r--r-- | jobs/basejob.cpp | 2 |
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; |