Skip to content

Commit

Permalink
Merged PR 709967: Temporarily disable status message throttling
Browse files Browse the repository at this point in the history
The throttling is incorrectly applying to the dev "fancy console". Disable until addressed

Related work items: #2044355
  • Loading branch information
mpysson authored and pgunasekara committed Mar 29, 2023
1 parent f8c8091 commit 6d50abd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Public/Src/App/ConsoleLogger/ConsoleEventListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 6d50abd

Please sign in to comment.