fix variable

This commit is contained in:
rootdarkarchon
2023-01-29 15:19:49 +01:00
parent c3b8c1077a
commit e0ab278759

View File

@@ -91,7 +91,7 @@ internal class Logger : ILogger
#if DEBUG #if DEBUG
PluginLog.Verbose($"[{_name}] [{eventId}] {formatter(state, exception)}"); PluginLog.Verbose($"[{_name}] [{eventId}] {formatter(state, exception)}");
#else #else
PluginLog.Verbose($"[{name}] {eventId} {state} {formatter(state, exception)}"); PluginLog.Verbose($"[{_name}] {eventId} {state} {formatter(state, exception)}");
#endif #endif
break; break;
} }