diff --git a/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerQueueManager.cs b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerQueueManager.cs index 1d3181c2..c2e9eb52 100644 --- a/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerQueueManager.cs +++ b/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLoggerQueueManager.cs @@ -1,5 +1,4 @@ using System.Collections.Concurrent; -using Microsoft.Extensions.Logging; using SPTarkov.DI.Annotations; namespace SPTarkov.Server.Core.Utils.Logger; @@ -34,7 +33,7 @@ public class SptLoggerQueueManager(IEnumerable logHandlers) private void LoggerWorkerThread() { - while (!_loggerCancellationTokens.Token.IsCancellationRequested) + while (!_loggerCancellationTokens.IsCancellationRequested) { try {