C#: Add more logging to DependabotProxy

This commit is contained in:
Michael B. Gale
2024-11-29 13:18:58 +00:00
parent 6cd5711313
commit de415d68cf
2 changed files with 9 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
public DotNetCliInvoker(ILogger logger, string exec, TemporaryDirectory tempWorkingDirectory)
{
this.logger = logger;
this.proxy = new DependabotProxy(tempWorkingDirectory);
this.proxy = new DependabotProxy(logger, tempWorkingDirectory);
this.Exec = exec;
logger.LogInfo($"Using .NET CLI executable: '{Exec}'");
}