C#: Report more timing metrics to the console logger.

This commit is contained in:
Michael Nebel
2025-11-06 15:17:45 +01:00
parent a25ae3922d
commit 446a87713a

View File

@@ -154,7 +154,8 @@ namespace Semmle.Extraction.CSharp.Standalone
fileLogger.LogError($" Unhandled exception: {ex}");
}
logger.Log(Severity.Info, $"Extraction completed in {overallStopwatch.Elapsed}");
logger.Log(Severity.Info, $"Extraction completed in {analyzerStopwatch.Elapsed}");
logger.Log(Severity.Info, $"Total time: {overallStopwatch.Elapsed}");
return ExitCode.Ok;
}