From a0df9d1594ada7ad26e36199e8456f65f89d7535 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Wed, 12 Mar 2025 18:19:16 +0100 Subject: [PATCH] Reduce severity for "Encountered enum member {} which is not modeled in your clients" I've seen tons of "Encountered enum member CRC64NVME which is not modeled in your clients" messages Idealy we need to update aws-sdk, but it will take time, and it cannot be backported. --- .../source/utils/EnumParseOverflowContainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aws-cpp-sdk-core/source/utils/EnumParseOverflowContainer.cpp b/src/aws-cpp-sdk-core/source/utils/EnumParseOverflowContainer.cpp index eaeba1d9105..4eb02c05d25 100644 --- a/src/aws-cpp-sdk-core/source/utils/EnumParseOverflowContainer.cpp +++ b/src/aws-cpp-sdk-core/source/utils/EnumParseOverflowContainer.cpp @@ -28,6 +28,6 @@ const Aws::String& EnumParseOverflowContainer::RetrieveOverflow(int hashCode) co void EnumParseOverflowContainer::StoreOverflow(int hashCode, const Aws::String& value) { WriterLockGuard guard(m_overflowLock); - AWS_LOGSTREAM_WARN(LOG_TAG, "Encountered enum member " << value << " which is not modeled in your clients. You should update your clients when you get a chance."); + AWS_LOGSTREAM_DEBUG(LOG_TAG, "Encountered enum member " << value << " which is not modeled in your clients. You should update your clients when you get a chance."); m_overflowMap[hashCode] = value; }