Commit 871f5f7c authored by Fabio Bas's avatar Fabio Bas
Browse files

use qWarning instead of std::err

parent 8d8ccaad
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include <QCoreApplication> #include <QCoreApplication>
#include <QTextCodec> #include <QTextCodec>
#include <QtGlobal>
#include <iostream> #include <iostream>
#include <QMetaType> #include <QMetaType>
#include <QDateTime> #include <QDateTime>
...@@ -164,7 +165,7 @@ int main(int argc, char *argv[]) ...@@ -164,7 +165,7 @@ int main(int argc, char *argv[])
#endif #endif
configPath = SettingsCache::guessConfigurationPath(configPath); configPath = SettingsCache::guessConfigurationPath(configPath);
std::cerr << "Using configuration file:" << configPath.toUtf8().data() << std::endl; qWarning() << "Using configuration file: " << configPath;
settingsCache = new SettingsCache(); settingsCache = new SettingsCache();
loggerThread = new QThread; loggerThread = new QThread;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment