Use standard output for logging by default

This commit is contained in:
2025-12-16 01:37:06 +02:00
parent ed994cb560
commit 82bb297119

View File

@@ -133,7 +133,7 @@ void Log::Logger::Write(const StringView& msg)
IsDuringLog = true;
// Send message to standard process output
if (CommandLine::Options.Std.IsTrue())
if (!CommandLine::Options.Std.IsFalse())
{
#if PLATFORM_TEXT_IS_CHAR16
StringAnsi ansi(msg);