From 58cd08f22f910b3486ae210328625c240b708bae Mon Sep 17 00:00:00 2001 From: Thu Pham Date: Tue, 17 Dec 2024 11:36:19 -0800 Subject: [PATCH] [MAINTENENCE] Change logger warning to debug --- .../expectations/core/expect_column_values_to_be_of_type.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/great_expectations/expectations/core/expect_column_values_to_be_of_type.py b/great_expectations/expectations/core/expect_column_values_to_be_of_type.py index 5429c3979882..e5dadf619dc3 100644 --- a/great_expectations/expectations/core/expect_column_values_to_be_of_type.py +++ b/great_expectations/expectations/core/expect_column_values_to_be_of_type.py @@ -624,7 +624,7 @@ def _get_potential_sqlalchemy_types(execution_engine, expected_type): except AttributeError: logger.debug(f"Unrecognized type: {expected_type}") if len(types) == 0: - logger.warning("No recognized sqlalchemy types in type_list for current dialect.") + logger.debug("No recognized sqlalchemy types in type_list for current dialect.") return types