C#: Make Started log as Debug.

This commit is contained in:
Michael Nebel
2024-04-15 10:27:58 +02:00
parent ddfed6ea65
commit 336a18a1d9

View File

@@ -111,12 +111,12 @@ namespace Semmle.Extraction.CSharp.Standalone
AnalysisAction.UpToDate => "up to date",
_ => "unknown action"
};
logger.LogInfo($"[{item}/{total}] {source} ({extra})");
logger.LogDebug($"[{item}/{total}] {source} ({extra})");
}
public void Started(int item, int total, string source)
{
logger.LogInfo($"[{item}/{total}] {source} (processing started)");
logger.LogDebug($"[{item}/{total}] {source} (processing started)");
}
public void MissingType(string type)
@@ -166,4 +166,4 @@ namespace Semmle.Extraction.CSharp.Standalone
return ExitCode.Ok;
}
}
}
}