From 0f0e8e9f988ce767dc00d62763bf52cd31b41165 Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Thu, 24 Jul 2025 09:39:10 -0700 Subject: [PATCH] Reduces log noise for monitor tab auto-scroll Removes the log message that is generated when auto-scrolling is enabled. This reduces log spam, as this can be a frequent event. The message for when a user manually disables auto-scrolling is retained. --- FFUDevelopment/FFUUI.Core/FFUUI.Core.Handlers.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFUDevelopment/FFUUI.Core/FFUUI.Core.Handlers.psm1 b/FFUDevelopment/FFUUI.Core/FFUUI.Core.Handlers.psm1 index eb5b111..40096aa 100644 --- a/FFUDevelopment/FFUUI.Core/FFUUI.Core.Handlers.psm1 +++ b/FFUDevelopment/FFUUI.Core/FFUUI.Core.Handlers.psm1 @@ -877,7 +877,7 @@ function Register-EventHandlers { # Update the flag $localState.Flags.autoScrollLog = $isLastItemSelected if ($isLastItemSelected) { - WriteLog "Monitor tab autoscroll enabled (last item selected)." + # WriteLog "Monitor tab autoscroll enabled (last item selected)." } else { WriteLog "Monitor tab autoscroll disabled (user selected item #$($listBox.SelectedIndex))."