diff --git a/csharp/extractor/Semmle.Extraction.CSharp.Standalone/Extractor.cs b/csharp/extractor/Semmle.Extraction.CSharp.Standalone/Extractor.cs index 9ddf7686badf..3fc98e35b775 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.Standalone/Extractor.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.Standalone/Extractor.cs @@ -154,7 +154,8 @@ public static ExitCode Run(Options options) 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; }