This commit is contained in:
CortexCore
2024-07-29 17:53:08 +08:00
parent f46602d4a4
commit 07c8b13bd6
5 changed files with 39 additions and 1 deletions

View File

@@ -350,7 +350,12 @@ namespace BITKit.Net
var _bytes = returnMS.ToArray();
_sendQueue.Enqueue((Id,_bytes));
if (e is InGameException inGameException)
{
BIT4Log.Warning<KCPNetServer>(inGameException.Message);
return;
}
BIT4Log.LogException(e);
return;
}