diff --git a/src/Logger/Logger.cpp b/src/Logger/Logger.cpp index 7e70431..37209c9 100644 --- a/src/Logger/Logger.cpp +++ b/src/Logger/Logger.cpp @@ -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