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);