From 6d50abddb0593b63dff42ee48005ecf7fe211edd Mon Sep 17 00:00:00 2001 From: Michael Pysson Date: Wed, 29 Mar 2023 21:22:55 +0000 Subject: [PATCH] Merged PR 709967: Temporarily disable status message throttling The throttling is incorrectly applying to the dev "fancy console". Disable until addressed Related work items: #2044355 --- Public/Src/App/ConsoleLogger/ConsoleEventListener.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Public/Src/App/ConsoleLogger/ConsoleEventListener.cs b/Public/Src/App/ConsoleLogger/ConsoleEventListener.cs index 82e588dc48..d198940b4e 100644 --- a/Public/Src/App/ConsoleLogger/ConsoleEventListener.cs +++ b/Public/Src/App/ConsoleLogger/ConsoleEventListener.cs @@ -533,11 +533,13 @@ private static string FinalizeFormatStringLayout(StringBuilder buffer, string st private void SendToConsole(EventWrittenEventArgs eventData, string label, string message, bool allowStatusThrottling, string updatableMessage = null) { + /* Bug: 2044355 + * Temporarily disable until addressed if (allowStatusThrottling && m_statusMessageThrottler.ShouldThrottleStatusUpdate()) { // Bail out early if this is a status update and the update period is more frequent than desired return; - } + }*/ string finalMessage = CreateFullMessageString(eventData, label, message, BaseTime, UseCustomPipDescription, TimeDisplay.Seconds);