Changes a LogDebug to LogError

This commit is contained in:
Jordan Brown
2020-01-05 14:56:13 -05:00
parent 66baecfbc4
commit 405c4c7d3b
@@ -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);
}
}