Skip to content

Commit a0df9d1

Browse files
committed
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.
1 parent 71169ae commit a0df9d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aws-cpp-sdk-core/source/utils/EnumParseOverflowContainer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ const Aws::String& EnumParseOverflowContainer::RetrieveOverflow(int hashCode) co
2828
void EnumParseOverflowContainer::StoreOverflow(int hashCode, const Aws::String& value)
2929
{
3030
WriterLockGuard guard(m_overflowLock);
31-
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.");
31+
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.");
3232
m_overflowMap[hashCode] = value;
3333
}

0 commit comments

Comments
 (0)