From b10e54c8469fe05b8877fbeef3f1833c807d1132 Mon Sep 17 00:00:00 2001 From: sin365 <353374337@qq.com> Date: Thu, 16 Oct 2025 16:55:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=8E=BB=E5=A4=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs index efd87ec2..caa455ce 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/App.cs @@ -300,13 +300,13 @@ namespace AxibugEmuOnline.Client.ClientCore { case E_LogType.Debug: case E_LogType.Info: - Debug.Log("[AxiNet]:" + msg); + Debug.Log(msg); break; case E_LogType.Warning: - Debug.LogWarning("[AxiNet]:" + msg); + Debug.LogWarning(msg); break; case E_LogType.Error: - Debug.LogError("[AxiNet]:" + msg); + Debug.LogError(msg); break; } }