From e0ab278759dd424f3d9c2761a3586b1d5b1cd025 Mon Sep 17 00:00:00 2001 From: rootdarkarchon Date: Sun, 29 Jan 2023 15:19:49 +0100 Subject: [PATCH] fix variable --- MareSynchronos/Utils/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MareSynchronos/Utils/Logger.cs b/MareSynchronos/Utils/Logger.cs index 71dfacf..eae44d1 100644 --- a/MareSynchronos/Utils/Logger.cs +++ b/MareSynchronos/Utils/Logger.cs @@ -91,7 +91,7 @@ internal class Logger : ILogger #if DEBUG PluginLog.Verbose($"[{_name}] [{eventId}] {formatter(state, exception)}"); #else - PluginLog.Verbose($"[{name}] {eventId} {state} {formatter(state, exception)}"); + PluginLog.Verbose($"[{_name}] {eventId} {state} {formatter(state, exception)}"); #endif break; }