diff --git a/src/Runner.Listener/Configuration/ConfigurationManager.cs b/src/Runner.Listener/Configuration/ConfigurationManager.cs index eb3bbdbb3..ea0dc06c3 100644 --- a/src/Runner.Listener/Configuration/ConfigurationManager.cs +++ b/src/Runner.Listener/Configuration/ConfigurationManager.cs @@ -137,7 +137,7 @@ namespace GitHub.Runner.Listener.Configuration GitHubAuthResult authResult = await GetTenantCredential(inputUrl, registerToken, Constants.RunnerEvent.Register); runnerSettings.ServerUrl = authResult.TenantUrl; runnerSettings.UseV2Flow = authResult.UseV2Flow; - _term.WriteLine($"Using V2 flow: {runnerSettings.UseV2Flow}"); + Trace.Info($"Using V2 flow: {runnerSettings.UseV2Flow}"); creds = authResult.ToVssCredentials(); Trace.Info("cred retrieved via GitHub auth"); }