Some minor stuff.

This commit is contained in:
Martin Rotter 2015-05-31 17:35:54 +02:00
parent 524fdb3036
commit 136cd10fd5
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ int main(int argc, char *argv[]) {
// Check if another instance is running.
if (application.sendMessage(APP_IS_RUNNING)) {
qDebug("Another instance of the application is already running. Notifying it.");
qWarning("Another instance of the application is already running. Notifying it.");
return EXIT_FAILURE;
}

View File

@ -47,6 +47,6 @@ void SilentNetworkAccessManager::onAuthenticationRequired(QNetworkReply *reply,
reply->setProperty("authentication-given", false);
// Authentication is required but this feed does not contain it.
qDebug("Feed '%s' requested authentication but username/password is not available.", qPrintable(reply->url().toString()));
qWarning("Feed '%s' requested authentication but username/password is not available.", qPrintable(reply->url().toString()));
}
}