From 6616b54852272bfd1cc751031581469595be52b3 Mon Sep 17 00:00:00 2001 From: F K <54195004+fredjk-gh@users.noreply.github.com> Date: Sat, 28 May 2022 08:54:10 -0400 Subject: [PATCH] Suppress pre-reading if read-all is also selected (as it is redundant) (#84) --- ObservatoryCore/LogMonitor.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ObservatoryCore/LogMonitor.cs b/ObservatoryCore/LogMonitor.cs index 44ad93f..91de6ed 100644 --- a/ObservatoryCore/LogMonitor.cs +++ b/ObservatoryCore/LogMonitor.cs @@ -113,7 +113,8 @@ namespace Observatory public void PrereadJournals() { - if (!Properties.Core.Default.TryPrimeSystemContextOnStartMonitor) return; + if (!Properties.Core.Default.TryPrimeSystemContextOnStartMonitor || + Properties.Core.Default.StartReadAll) return; SetLogMonitorState(currentState | LogMonitorState.PreRead);