Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MAINTENANCE] Change logger warning to debug #10790

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
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.")

Check warning on line 631 in great_expectations/expectations/core/expect_column_values_to_be_of_type.py

View check run for this annotation

Codecov / codecov/patch

great_expectations/expectations/core/expect_column_values_to_be_of_type.py#L631

Added line #L631 was not covered by tests

return types

Expand Down
Loading