diff --git a/Source/Engine/Core/Log.cpp b/Source/Engine/Core/Log.cpp index 013031ced..daba7685d 100644 --- a/Source/Engine/Core/Log.cpp +++ b/Source/Engine/Core/Log.cpp @@ -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);