diff --git a/Bloxstrap/Integrations/ActivityWatcher.cs b/Bloxstrap/Integrations/ActivityWatcher.cs index 2e5d39d..9447e11 100644 --- a/Bloxstrap/Integrations/ActivityWatcher.cs +++ b/Bloxstrap/Integrations/ActivityWatcher.cs @@ -112,8 +112,8 @@ { string? log = await sr.ReadLineAsync(); - if (string.IsNullOrEmpty(log)) - logUpdatedEvent.WaitOne(1000); + if (log is null) + logUpdatedEvent.WaitOne(250); else ExamineLogEntry(log); }