use qWarning instead of std::err
This commit is contained in:
parent
8d8ccaad7f
commit
871f5f7c94
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue