From 136cd10fd56b40d0af74e487059ab514733efd63 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Sun, 31 May 2015 17:35:54 +0200 Subject: [PATCH] Some minor stuff. --- src/main.cpp | 2 +- src/network-web/silentnetworkaccessmanager.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 10658a987..5cb306bd4 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -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; } diff --git a/src/network-web/silentnetworkaccessmanager.cpp b/src/network-web/silentnetworkaccessmanager.cpp index d20b5bb3b..88e30d91a 100644 --- a/src/network-web/silentnetworkaccessmanager.cpp +++ b/src/network-web/silentnetworkaccessmanager.cpp @@ -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())); } }