From 9e25714338f1afee1b2ce16c66fb1834190086fb Mon Sep 17 00:00:00 2001 From: Anton Makarenko Date: Wed, 5 Feb 2025 16:24:55 +0200 Subject: [PATCH] Changes text of documentation above static Log method from warning to info to better reflect method's purpose and avoid possible confusion --- Source/Engine/Debug/DebugLog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Debug/DebugLog.h b/Source/Engine/Debug/DebugLog.h index a70fc3d3b..fe3708b46 100644 --- a/Source/Engine/Debug/DebugLog.h +++ b/Source/Engine/Debug/DebugLog.h @@ -19,7 +19,7 @@ public: static void Log(LogType type, const StringView& message); /// - /// A variant of Debug.Log that logs a warning message to the console. + /// A variant of Debug.Log that logs an info message to the console. /// /// The text message to display. FORCE_INLINE static void Log(const StringView& message)