From 14abeb24275235b0252602e397fd3c3dc1b37722 Mon Sep 17 00:00:00 2001 From: ALEXTANG <574809918@qq.com> Date: Fri, 21 Apr 2023 13:26:40 +0800 Subject: [PATCH] Update TEngineLogHelper.cs --- Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs b/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs index e6a50b29..fe0cd743 100644 --- a/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs +++ b/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs @@ -160,7 +160,7 @@ namespace TEngine } else if (type == LogLevel.EXCEPTION) { - Debug.LogError(logStr); + // Debug.LogError(logStr); throw new Exception(logStr); } }