From e13627df81138ab3e27163ec77a22ef3f1ce3bc8 Mon Sep 17 00:00:00 2001 From: Luke Tomlinson Date: Wed, 31 May 2023 10:40:34 -0400 Subject: [PATCH] Move Using V2 Flow log to Trace (#2635) --- src/Runner.Listener/Configuration/ConfigurationManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Listener/Configuration/ConfigurationManager.cs b/src/Runner.Listener/Configuration/ConfigurationManager.cs index eb3bbdbb3c9..ea0dc06c354 100644 --- a/src/Runner.Listener/Configuration/ConfigurationManager.cs +++ b/src/Runner.Listener/Configuration/ConfigurationManager.cs @@ -137,7 +137,7 @@ public async Task ConfigureAsync(CommandSettings command) 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"); }