From 2ee34049e03d16f68e7f4c8cfe988179676eb698 Mon Sep 17 00:00:00 2001 From: sbiscigl Date: Mon, 3 Jul 2023 10:29:54 -0400 Subject: [PATCH] Updates init retry strategy log level --- src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp b/src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp index 647c6e3f49a..8d72da83bde 100644 --- a/src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp +++ b/src/aws-cpp-sdk-core/source/client/ClientConfiguration.cpp @@ -254,7 +254,7 @@ std::shared_ptr InitRetryStrategy(Aws::String retryMode) maxAttempts = static_cast(Aws::Utils::StringUtils::ConvertToInt32(maxAttemptsString.c_str())); if (maxAttempts == 0) { - AWS_LOGSTREAM_WARN(CLIENT_CONFIG_TAG, "Retry Strategy will use the default max attempts."); + AWS_LOGSTREAM_INFO(CLIENT_CONFIG_TAG, "Retry Strategy will use the default max attempts."); maxAttempts = -1; } }