We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b294a11 commit a1a37f1Copy full SHA for a1a37f1
SerialPrograms/Source/CommonFramework/Logging/FileWindowLogger.cpp
@@ -7,6 +7,7 @@
7
#include <QCoreApplication>
8
#include <QMenuBar>
9
#include <QDir>
10
+#include <CommonFramework/Globals.h>
11
#include "CommonFramework/Windows/DpiScaler.h"
12
#include "CommonFramework/Windows/WindowTracker.h"
13
#include "FileWindowLogger.h"
@@ -19,7 +20,7 @@ namespace PokemonAutomation{
19
20
21
22
Logger& global_logger_raw(){
- static FileWindowLogger logger((QCoreApplication::applicationName() + ".log").toStdString());
23
+ static FileWindowLogger logger(USER_FILE_PATH() + (QCoreApplication::applicationName() + ".log").toStdString());
24
return logger;
25
}
26
0 commit comments