diff options
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/basejob.cpp | 5 |
1 files 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 ); |