[Logger] Add new line. Remove gren text

This commit is contained in:
Diavolo 2022-07-03 21:46:42 +02:00
parent 69f395e2a7
commit 474d9df014
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5

View File

@ -54,7 +54,7 @@ namespace Components
const auto msg = std::vformat(fmt, args);
const auto out = std::format("Debug:\n {}\nFile: {}\nLine: {}\n", msg, loc.file_name(), loc.line());
#else
const auto out = "^2" + std::vformat(fmt, args);
const auto out = std::vformat(fmt, args) + "\n";
#endif
Logger::MessagePrint(Game::CON_CHANNEL_DONT_FILTER, out);