Skip to content

Commit 7e5c9ec

Browse files
committed
fix(Launcher): 修复调试模式下控制台日志输出问题
在DEBUG模式下应启用控制台日志输出,发布版本则禁用。原逻辑相反,现修正条件判断。
1 parent 2be6d72 commit 7e5c9ec

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

GameFrameX.Launcher/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ await GameApp.Entry(args, () =>
1616
private static void LogAction(LogOptions options)
1717
{
1818
// 发布之后控制台不输出
19-
#if !DEBUG
19+
#if DEBUG
20+
options.IsConsole = true;
21+
#else
2022
options.IsConsole = false;
2123
#endif
2224
}

0 commit comments

Comments
 (0)