浏览代码

Change console log to discard on overflow (#1241)

mageven 5 年之前
父节点
当前提交
ce983f360b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Ryujinx.Common/Logging/Logger.cs

+ 1 - 1
Ryujinx.Common/Logging/Logger.cs

@@ -42,7 +42,7 @@ namespace Ryujinx.Common.Logging
             AddTarget(new AsyncLogTargetWrapper(
                 new ConsoleLogTarget("console"),
                 1000,
-                AsyncLogTargetOverflowAction.Block));
+                AsyncLogTargetOverflowAction.Discard));
         }
 
         public static void RestartTime()