From 82bb2971190a8c2a65f3f26bbedd70966a291df1 Mon Sep 17 00:00:00 2001 From: Ari Vuollet Date: Tue, 16 Dec 2025 01:37:06 +0200 Subject: [PATCH] Use standard output for logging by default --- Source/Engine/Core/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);