mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
fix: comment out non error log levels in DebugErrorLogSink
This commit is contained in:
parent
6d93662b31
commit
fb46b397d0
1 changed files with 3 additions and 3 deletions
|
|
@ -20,9 +20,9 @@ namespace PepperDash.Core.Logging
|
||||||
|
|
||||||
private Dictionary<LogEventLevel, Action<string>> _errorLogMap = new Dictionary<LogEventLevel, Action<string>>
|
private Dictionary<LogEventLevel, Action<string>> _errorLogMap = new Dictionary<LogEventLevel, Action<string>>
|
||||||
{
|
{
|
||||||
{ LogEventLevel.Verbose, (msg) => ErrorLog.Notice(msg) },
|
//{ LogEventLevel.Verbose, (msg) => ErrorLog.Notice(msg) },
|
||||||
{LogEventLevel.Debug, (msg) => ErrorLog.Notice(msg) },
|
//{LogEventLevel.Debug, (msg) => ErrorLog.Notice(msg) },
|
||||||
{LogEventLevel.Information, (msg) => ErrorLog.Notice(msg) },
|
//{LogEventLevel.Information, (msg) => ErrorLog.Notice(msg) },
|
||||||
{LogEventLevel.Warning, (msg) => ErrorLog.Warn(msg) },
|
{LogEventLevel.Warning, (msg) => ErrorLog.Warn(msg) },
|
||||||
{LogEventLevel.Error, (msg) => ErrorLog.Error(msg) },
|
{LogEventLevel.Error, (msg) => ErrorLog.Error(msg) },
|
||||||
{LogEventLevel.Fatal, (msg) => ErrorLog.Error(msg) }
|
{LogEventLevel.Fatal, (msg) => ErrorLog.Error(msg) }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue