Use a more appropriate log level

This commit is contained in:
Arnaud Bienner 2014-04-10 00:49:31 +02:00
parent 532720ea79
commit 2f5e03e921
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ QNetworkReply* SoundCloudService::CreateRequest(const QString& ressource_name,
QVariant SoundCloudService::ExtractResult(QNetworkReply* reply) {
if (reply->error() != QNetworkReply::NoError) {
qLog(Debug) << "Error when retrieving SoundCloud results:" << reply->errorString() << QString(" (%1)").arg(reply->error());
qLog(Error) << "Error when retrieving SoundCloud results:" << reply->errorString() << QString(" (%1)").arg(reply->error());
if (reply->error() == QNetworkReply::ContentAccessDenied ||
reply->error() == QNetworkReply::ContentOperationNotPermittedError ||
reply->error() == QNetworkReply::ContentNotFoundError ||