From 15feb65dbb17161ccfbda614e0635f2698beacd7 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 22 Sep 2017 14:04:26 +0900 Subject: BaseJob: Log the sent request more nicely --- jobs/basejob.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jobs/basejob.cpp b/jobs/basejob.cpp index 6b2ebc58..ea1a7158 100644 --- a/jobs/basejob.cpp +++ b/jobs/basejob.cpp @@ -159,8 +159,9 @@ void BaseJob::start() { emit aboutToStart(); d->retryTimer.stop(); // In case we were counting down at the moment - qCDebug(d->logCat) << this << "sending request to" - << d->apiEndpoint % '?' % d->requestQuery.toString(); + qCDebug(d->logCat) << this << "sending request to" << d->apiEndpoint; + if (!d->requestQuery.isEmpty()) + qCDebug(d->logCat) << " query:" << d->requestQuery.toString(); d->sendRequest(); connect( d->reply.data(), &QNetworkReply::sslErrors, this, &BaseJob::sslErrors ); connect( d->reply.data(), &QNetworkReply::finished, this, &BaseJob::gotReply ); -- cgit v1.2.3