Skip to content

Commit

Permalink
Output simple http requests statistics at the end of results reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed May 17, 2021
1 parent cc71374 commit 212e118
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ private void FinishRun(string report)

Console.WriteLine($"Elapsed: {sw.Elapsed}");

var statisticsRecord = _launchReporter.StatisticsCounter.ToString();
_traceLogger.Info(statisticsRecord);
Console.WriteLine(statisticsRecord);

try
{
AfterRunFinished?.Invoke(this, new RunFinishedEventArgs(_rpService, finishLaunchRequest, _launchReporter, report));
Expand Down

0 comments on commit 212e118

Please sign in to comment.