From 1e9d3f7fadaa1969088cccfb9ba7752ebd43befc Mon Sep 17 00:00:00 2001 From: Shawn Jackson Date: Thu, 10 Oct 2024 14:55:04 -0700 Subject: [PATCH] CU-868a5nz1n setting new default for error logger (console) --- Core/Resgrid.Config/ExternalErrorConfig.cs | 5 +++-- Core/Resgrid.Config/SystemBehaviorConfig.cs | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Core/Resgrid.Config/ExternalErrorConfig.cs b/Core/Resgrid.Config/ExternalErrorConfig.cs index 42ba4717..dbb229c7 100644 --- a/Core/Resgrid.Config/ExternalErrorConfig.cs +++ b/Core/Resgrid.Config/ExternalErrorConfig.cs @@ -34,7 +34,8 @@ public static class ExternalErrorConfig public enum ErrorLoggerTypes { - Elk, - Sentry + Elk, // No longer supported + Sentry, + Console } } diff --git a/Core/Resgrid.Config/SystemBehaviorConfig.cs b/Core/Resgrid.Config/SystemBehaviorConfig.cs index 11d8586f..8d08ba6f 100644 --- a/Core/Resgrid.Config/SystemBehaviorConfig.cs +++ b/Core/Resgrid.Config/SystemBehaviorConfig.cs @@ -47,7 +47,8 @@ public static class SystemBehaviorConfig /// public static HashSet BypassDoNotBroadcastDepartments = new HashSet() { - 1 + 1, +// 2104 }; /// @@ -104,7 +105,7 @@ public static class SystemBehaviorConfig /// /// Sets the type of External error and logging provider for the system to use /// - public static ErrorLoggerTypes ErrorLoggerType = ErrorLoggerTypes.Elk; + public static ErrorLoggerTypes ErrorLoggerType = ErrorLoggerTypes.Console; /// /// Sets the type of outbound email server or provider to use