From 0088e617ca28c586f487560c4942fd814e1a90e6 Mon Sep 17 00:00:00 2001 From: sfc-gh-ext-simba-lf Date: Fri, 9 Feb 2024 16:12:16 -0800 Subject: [PATCH] SNOW-916949: Make log level match other log messages --- Snowflake.Data/Core/Authenticator/OktaAuthenticator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snowflake.Data/Core/Authenticator/OktaAuthenticator.cs b/Snowflake.Data/Core/Authenticator/OktaAuthenticator.cs index dae821878..6e258af5b 100644 --- a/Snowflake.Data/Core/Authenticator/OktaAuthenticator.cs +++ b/Snowflake.Data/Core/Authenticator/OktaAuthenticator.cs @@ -95,7 +95,7 @@ async Task IAuthenticator.AuthenticateAsync(CancellationToken cancellationToken) lastRetryException = ex; if (IsPostbackUrlNotFound(lastRetryException)) { - logger.Info("Refreshing token for Okta re-authentication and starting from step 3 again"); + logger.Debug("Refreshing token for Okta re-authentication and starting from step 3 again"); // Get the current retry count and timeout elapsed from the response headers retryCount += int.Parse(samlRawResponse.Content.Headers.GetValues(RetryCountHeader).First());