This commit is contained in:
Andrei Yankovich 2019-08-23 20:57:59 +03:00
parent ddf7656044
commit 0f9fbcf2f3

View File

@ -123,7 +123,7 @@ bool Params::writeLoginFile(const QString &log, VerboseLvl vLvl) {
if (logFile.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text)) {
QTextStream stream(&logFile);
stream << timeString() << lvlToString(vLvl) + ": " + log << endl;
stream << timeString() <<"| " << lvlToString(vLvl) + ": " + log << endl;
logFile.close();
} else {
return false;