Skip to content

Commit

Permalink
Changed the mapping for the Fatal SeriLog event level to map to the C…
Browse files Browse the repository at this point in the history
…ritical Appliation Insights SeverityLevel
  • Loading branch information
Aaron Witt authored and Ivan Gavryliuk committed Jan 25, 2019
1 parent f412d73 commit 28fcb9f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ public static class LogEventLevelExtensions
case LogEventLevel.Warning:
return SeverityLevel.Warning;
case LogEventLevel.Error:
case LogEventLevel.Fatal:
return SeverityLevel.Error;
case LogEventLevel.Fatal:
return SeverityLevel.Critical;
}

return null;
Expand Down

0 comments on commit 28fcb9f

Please sign in to comment.