Skip to content

Commit

Permalink
Docs: don't write render time to stdout because it spams the CI log
Browse files Browse the repository at this point in the history
  • Loading branch information
henon authored and ferraridavide committed May 30, 2023
1 parent fc3ba40 commit 36e0041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MudBlazor.Docs/Components/DocsRenderBenchmark.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
private void OnDocsPageRendered(Stopwatch stopwatch)
{
_renderMs = stopwatch.ElapsedMilliseconds;
Console.WriteLine($"### {NavMan.ToBaseRelativePath(NavMan.Uri)} rendered in {_renderMs}ms");
//Console.WriteLine($"### {NavMan.ToBaseRelativePath(NavMan.Uri)} rendered in {_renderMs}ms");
StateHasChanged();
}
}

0 comments on commit 36e0041

Please sign in to comment.