mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge branch 'pr619'
This commit is contained in:
commit
932f70ae51
17
src/main.cpp
17
src/main.cpp
|
@ -53,11 +53,18 @@ int main(int argc, char *argv[])
|
||||||
logFile = new QTextStream;
|
logFile = new QTextStream;
|
||||||
dflt = qInstallMessageHandler(nullptr);
|
dflt = qInstallMessageHandler(nullptr);
|
||||||
QFile logfile(QDir(Settings::getSettingsDirPath()).filePath("qtox.log"));
|
QFile logfile(QDir(Settings::getSettingsDirPath()).filePath("qtox.log"));
|
||||||
logfile.open(QIODevice::Append);
|
if (logfile.open(QIODevice::Append))
|
||||||
logFile->setDevice(&logfile);
|
{
|
||||||
|
logFile->setDevice(&logfile);
|
||||||
*logFile << QDateTime::currentDateTime().toString("yyyy-dd-MM HH:mm:ss' file logger starting\n'");
|
*logFile << QDateTime::currentDateTime().toString("\nyyyy-dd-MM HH:mm:ss' file logger starting\n'");
|
||||||
qInstallMessageHandler(myMessageHandler);
|
qInstallMessageHandler(myMessageHandler);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fprintf(stderr, "Couldn't open log file!!!\n");
|
||||||
|
delete logFile;
|
||||||
|
logFile = nullptr;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Windows platform plugins DLL hell fix
|
// Windows platform plugins DLL hell fix
|
||||||
|
|
Loading…
Reference in New Issue
Block a user