We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0319f8 commit da657afCopy full SHA for da657af
src/Serilog.Sinks.Exceptionless/Sinks/Exceptionless/ExceptionlessSink.cs
@@ -93,10 +93,6 @@ public void Emit(LogEvent logEvent) {
93
if (logEvent == null || !_client.Configuration.IsValid)
94
return;
95
96
- var minLogLevel = _client.Configuration.Settings.GetMinLogLevel(logEvent.GetSource());
97
- if (logEvent.GetLevel() < minLogLevel)
98
- return;
99
-
100
var builder = _client.CreateFromLogEvent(logEvent).AddTags(_defaultTags);
101
102
if (_includeProperties && logEvent.Properties != null) {
0 commit comments