From 405c4c7d3bba8365a63c11816bcb54dfb30cfe2a Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 5 Jan 2020 14:56:13 -0500 Subject: [PATCH] Changes a LogDebug to LogError --- src/Tgstation.Server.Host/Components/Interop/CommContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Interop/CommContext.cs b/src/Tgstation.Server.Host/Components/Interop/CommContext.cs index 489053e91b..433714a64e 100644 --- a/src/Tgstation.Server.Host/Components/Interop/CommContext.cs +++ b/src/Tgstation.Server.Host/Components/Interop/CommContext.cs @@ -125,7 +125,7 @@ namespace Tgstation.Server.Host.Components.Interop catch (OperationCanceledException) { } catch (Exception ex) { - logger.LogDebug("Exception while trying to handle command json write: {0}", ex); + logger.LogError("Exception while trying to handle command json write: {0}", ex); } }