We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f369001 commit b9881b6Copy full SHA for b9881b6
GameFrameX.Launcher/Program.cs
@@ -15,10 +15,14 @@ await GameApp.Entry(args, () =>
15
{
16
CacheStateTypeManager.Init();
17
MessageProtoHelper.Init(typeof(MessageProtoBuildInTag).Assembly, typeof(MessageProtoHandler).Assembly);
18
- }, LogAction);
+ }, LogConfiguration);
19
}
20
21
- private static void LogAction(LogOptions options)
+ /// <summary>
22
+ /// 日志配置
23
+ /// </summary>
24
+ /// <param name="options">配置对象</param>
25
+ private static void LogConfiguration(LogOptions options)
26
27
// 发布之后控制台不输出
28
#if !DEBUG
0 commit comments