Skip to content

Commit 6d50abd

Browse files
mpyssonpgunasekara
authored andcommitted
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
1 parent f8c8091 commit 6d50abd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Public/Src/App/ConsoleLogger/ConsoleEventListener.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -533,11 +533,13 @@ private static string FinalizeFormatStringLayout(StringBuilder buffer, string st
533533

534534
private void SendToConsole(EventWrittenEventArgs eventData, string label, string message, bool allowStatusThrottling, string updatableMessage = null)
535535
{
536+
/* Bug: 2044355
537+
* Temporarily disable until addressed
536538
if (allowStatusThrottling && m_statusMessageThrottler.ShouldThrottleStatusUpdate())
537539
{
538540
// Bail out early if this is a status update and the update period is more frequent than desired
539541
return;
540-
}
542+
}*/
541543

542544
string finalMessage = CreateFullMessageString(eventData, label, message, BaseTime, UseCustomPipDescription, TimeDisplay.Seconds);
543545

0 commit comments

Comments
 (0)