From db2ee2cd77fe7f2e5588e3af80cf6062c6d38c75 Mon Sep 17 00:00:00 2001 From: ALEXTANG <574809918@qq.com> Date: Tue, 18 Apr 2023 19:31:41 +0800 Subject: [PATCH] Update TEngineLogHelper.cs --- Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs b/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs index 83ec3ed1..e6a50b29 100644 --- a/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs +++ b/Assets/TEngine/Runtime/GameFramework/Log/TEngineLogHelper.cs @@ -70,7 +70,7 @@ namespace TEngine _stringBuilder.AppendFormat( bColor ? "[TEngine] ► [INFO] ► [{0}] - {1}" - : "[TEngine] ► [SUCCESSED] ► [{0}] - {1}", + : "[TEngine] ► [SUCCESSES] ► [{0}] - {1}", timeNow, logString); break; case LogLevel.INFO: @@ -161,7 +161,7 @@ namespace TEngine else if (type == LogLevel.EXCEPTION) { Debug.LogError(logStr); - throw new GameFrameworkException(logStr); + throw new Exception(logStr); } }