Propfind Job: Print redirect URL in log

This commit is contained in:
Markus Goetz 2014-02-24 15:20:36 +01:00
parent 7f508c0718
commit 51b5f3c9b2

View file

@ -458,7 +458,8 @@ void PropfindJob::finished()
} }
emit result(items); emit result(items);
} else { } else {
qDebug() << "Quota request *not* successful, http result code is " << http_result_code; qDebug() << "Quota request *not* successful, http result code is" << http_result_code
<< (http_result_code == 302 ? reply()->header(QNetworkRequest::LocationHeader).toString() : QLatin1String(""));
} }
} }