Skip to content

Commit 5148fa1

Browse files
author
LoneWandererProductions
committed
fix another subtle bug
1 parent 1d5e8dc commit 5148fa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CoreMemoryLog/InMemoryLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public void Log(LogLevel level,
113113
params object[] args)
114114
{
115115
// Skip if filtered
116-
if (!IsEnabled(LogLevel))
116+
if (!IsEnabled(level))
117117
return;
118118

119119
libraryName ??= GetDefaultLibraryName(); // auto-resolve if not set

0 commit comments

Comments
 (0)