diff --git a/IPA.Loader/Logging/StdoutInterceptorPipes.cs b/IPA.Loader/Logging/StdoutInterceptorPipes.cs index 3fc88c44..4409c5dd 100644 --- a/IPA.Loader/Logging/StdoutInterceptorPipes.cs +++ b/IPA.Loader/Logging/StdoutInterceptorPipes.cs @@ -56,9 +56,10 @@ namespace IPA.Logging catch (Exception ex) { Console.WriteLine(ex); - pipeServer.Close(); - manualResetEvent.Dispose(); } + + pipeServer.Close(); + manualResetEvent.Dispose(); }); } @@ -82,9 +83,10 @@ namespace IPA.Logging catch (Exception ex) { Console.WriteLine(ex); - pipeClient.Close(); - manualResetEvent.Dispose(); } + + pipeClient.Close(); + manualResetEvent.Dispose(); }); }