Skip to content

Commit

Permalink
CU-868a5nz1n setting new default for error logger (console)
Browse files Browse the repository at this point in the history
  • Loading branch information
ucswift committed Oct 10, 2024
1 parent 582a4ff commit 1e9d3f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Core/Resgrid.Config/ExternalErrorConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public static class ExternalErrorConfig

public enum ErrorLoggerTypes
{
Elk,
Sentry
Elk, // No longer supported
Sentry,
Console
}
}
5 changes: 3 additions & 2 deletions Core/Resgrid.Config/SystemBehaviorConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ public static class SystemBehaviorConfig
/// </summary>
public static HashSet<int> BypassDoNotBroadcastDepartments = new HashSet<int>()
{
1
1,
// 2104
};

/// <summary>
Expand Down Expand Up @@ -104,7 +105,7 @@ public static class SystemBehaviorConfig
/// <summary>
/// Sets the type of External error and logging provider for the system to use
/// </summary>
public static ErrorLoggerTypes ErrorLoggerType = ErrorLoggerTypes.Elk;
public static ErrorLoggerTypes ErrorLoggerType = ErrorLoggerTypes.Console;

/// <summary>
/// Sets the type of outbound email server or provider to use
Expand Down

0 comments on commit 1e9d3f7

Please sign in to comment.