From 58216d2d25d9819bcd51318283559464c453f19b Mon Sep 17 00:00:00 2001 From: ALEXTANG <574809918@qq.com> Date: Thu, 4 Aug 2022 15:30:51 +0800 Subject: [PATCH] Update UdpConnection.cs --- Assets/TEngine/Runtime/Net/ClientSocket/UdpConnection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/TEngine/Runtime/Net/ClientSocket/UdpConnection.cs b/Assets/TEngine/Runtime/Net/ClientSocket/UdpConnection.cs index 9a92fee2..a61659ad 100644 --- a/Assets/TEngine/Runtime/Net/ClientSocket/UdpConnection.cs +++ b/Assets/TEngine/Runtime/Net/ClientSocket/UdpConnection.cs @@ -55,10 +55,10 @@ namespace TEngine.Net } catch { - TLogger.LogError("UDP connect failed!...".ToColor("FF0000")); + TLogger.LogError("UDP connect failed!..."); return; } - TLogger.LogInfo("start connect udp server[{0}:{1}] successed...".ToColor("10FD00"), host, port); + TLogger.LogInfoSuccessd("start connect udp server[{0}:{1}] success...", host, port); Loom.RunAsync(() => { udpThread = new Thread(ReceiveMsg);