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

use qWarning instead of std::err

parent 8d8ccaad
......@@ -20,6 +20,7 @@
#include <QCoreApplication>
#include <QTextCodec>
#include <QtGlobal>
#include <iostream>
#include <QMetaType>
#include <QDateTime>
......@@ -164,7 +165,7 @@ int main(int argc, char *argv[])
#endif
configPath = SettingsCache::guessConfigurationPath(configPath);
std::cerr << "Using configuration file:" << configPath.toUtf8().data() << std::endl;
qWarning() << "Using configuration file: " << configPath;
settingsCache = new SettingsCache();
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