Logger: indent some preprocessor stuff.

Should have been indented from the get-go, but I forgot about it.
This commit is contained in:
Guillaume Jacquemin 2023-09-30 11:06:19 +02:00
parent 1851867b7e
commit b19c3e0025
Signed by: williamjcm
SSH Key Fingerprint: SHA256:AYLOg+iTV0ElElnlu4vqM4edFazVdRiuQB0Y5LoKc4A
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ void
Logger::initialise() {
auto exe_path = Utility::Path::split(*Utility::Path::executableLocation()).first();
_logFile.open(Utility::Path::join(exe_path, "SaveToolLog.txt").cbegin(), std::ios::trunc);
#ifndef SAVETOOL_DEBUG_BUILD
#ifndef SAVETOOL_DEBUG_BUILD
_logFile << "In case you encounter a bug:\n" <<
"1. Do not run the Save Tool again, as this log will be cleared.\n" <<
"2. Go to either the official Sekai Project Discord guild, or the community M.A.S.S. Builder one.\n" <<
@ -46,7 +46,7 @@ Logger::initialise() {
" Please include as many details as possible, I don't want to play \"20 questions\", and neither do you.\n" <<
"4. Send me this file _when I ask for it_, preferably in DMs.\n" <<
std::endl;
#endif
#endif
}
void