From ce983f360b3353bbcd73f3e58c24a23a22e1c94d Mon Sep 17 00:00:00 2001 From: mageven <62494521+mageven@users.noreply.github.com> Date: Wed, 10 Jun 2020 04:52:54 +0530 Subject: [PATCH] Change console log to discard on overflow (#1241) --- Ryujinx.Common/Logging/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Common/Logging/Logger.cs b/Ryujinx.Common/Logging/Logger.cs index e3d82201d..f650582d6 100644 --- a/Ryujinx.Common/Logging/Logger.cs +++ b/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()