diff options
author | mageven <62494521+mageven@users.noreply.github.com> | 2020-06-10 04:52:54 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 20:22:54 -0300 |
commit | ce983f360b3353bbcd73f3e58c24a23a22e1c94d (patch) | |
tree | bda638dd9f51b2f2bd0b8b1fbf07b6bae2d43a1b /Ryujinx.Common/Logging/Logger.cs | |
parent | 4ef689c67dd6416cd2462bcd8e82a2ded6a81d4e (diff) |
Change console log to discard on overflow (#1241)
Diffstat (limited to 'Ryujinx.Common/Logging/Logger.cs')
-rw-r--r-- | Ryujinx.Common/Logging/Logger.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Common/Logging/Logger.cs b/Ryujinx.Common/Logging/Logger.cs index e3d82201..f650582d 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() |