C#: Selected runtime location should be logged as information.

This commit is contained in:
Michael Nebel
2023-08-11 13:13:24 +02:00
parent 75e6fd9c8e
commit ef9453e862

View File

@@ -67,7 +67,7 @@ namespace Semmle.BuildAnalyser
if (options.ScanNetFrameworkDlls)
{
var runtimeLocation = new Runtime(dotnet).GetRuntime(options.UseSelfContainedDotnet);
progressMonitor.Log(Util.Logging.Severity.Debug, $"Runtime location selected: {runtimeLocation}");
progressMonitor.Log(Util.Logging.Severity.Info, $"Runtime location selected: {runtimeLocation}");
dllDirNames.Add(runtimeLocation);
}