فهرست منبع

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()