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 672ff05 commit 09d5502Copy full SHA for 09d5502
src/Exceptionless/Logging/InMemoryExceptionlessLog.cs
@@ -56,7 +56,7 @@ private void Write(LogEntry entry) {
56
if (MaxEntriesToStore <= 0 || entry == null)
57
return;
58
59
- if (entry.Level < MinimumLogLevel)
+ if (MinimumLogLevel != null && entry.Level < MinimumLogLevel)
60
61
62
entry.Date = DateTime.Now;
0 commit comments