Skip to content

Commit 77819d3

Browse files
committed
fix: 将服务器异常日志从Info级别改为Warning级别
修改日志级别以便更醒目地标识服务器执行异常,同时简化异常信息格式
1 parent 0eb6579 commit 77819d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

GameFrameX.Launcher/StartUp/Discovery/AppStartUpDiscoveryCenter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public override async Task StartAsync()
6060
}
6161
catch (Exception e)
6262
{
63-
LogHelper.Info($"服务器{ServerType}执行异常,e:{e}");
63+
LogHelper.Warning($"SERVER {ServerType} EXECUTION EXCEPTION");
6464
LogHelper.Fatal(e);
6565
}
6666

0 commit comments

Comments
 (0)