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);
}
}