Skip to content

Commit a9e7b95

Browse files
authored
Merge pull request #29 from ClickHouse/fix-warning
Reduce severity for "Encountered enum member {} which is not modeled in your clients"
2 parents 71169ae + a0df9d1 commit a9e7b95

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)