Change log file directory

This commit is contained in:
MangosArentLiterature 2021-04-02 18:43:09 -05:00 committed by GitHub
parent 9f206584bd
commit 996fed1afb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,7 +92,7 @@ void Logger::flush()
// raiden suggested this, but idk if i want to use it
// QString time = QDateTime::currentDateTime().toString("ddd mm/dd/yy hh:mm:ss");
// QString filename = QStringLiteral("reports/%1/%2.log").arg(area->name).arg(time);
QFile logfile("config/server.log");
QFile logfile("logs/server.log");
if (logfile.open(QIODevice::WriteOnly | QIODevice::Append)) {
QTextStream file_stream(&logfile);
while (!buffer.isEmpty())