日志去头

This commit is contained in:
sin365 2025-10-16 16:55:23 +08:00
parent be8b64f630
commit b10e54c846

View File

@ -300,13 +300,13 @@ namespace AxibugEmuOnline.Client.ClientCore
{ {
case E_LogType.Debug: case E_LogType.Debug:
case E_LogType.Info: case E_LogType.Info:
Debug.Log("[AxiNet]:" + msg); Debug.Log(msg);
break; break;
case E_LogType.Warning: case E_LogType.Warning:
Debug.LogWarning("[AxiNet]:" + msg); Debug.LogWarning(msg);
break; break;
case E_LogType.Error: case E_LogType.Error:
Debug.LogError("[AxiNet]:" + msg); Debug.LogError(msg);
break; break;
} }
} }