mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 22:51:28 +02:00
Merge pull request #3712 from ctrlaltdavid/fix-log-file-eols
Fix log file missing end of lines
This commit is contained in:
commit
b246af7511
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ void FileLogger::addMessage(QString message) {
|
||||||
QFile file(_fileName);
|
QFile file(_fileName);
|
||||||
if (file.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text)) {
|
if (file.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text)) {
|
||||||
QTextStream out(&file);
|
QTextStream out(&file);
|
||||||
out << message;
|
out << message << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue