Skip to content

Commit

Permalink
update log level
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-cartwright committed Jan 17, 2024
1 parent 63b8397 commit 08fe465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datahub-classify/src/datahub_classify/infotype_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ def perform_basic_checks(
and prediction_factors.get(VALUES, None)
and len(values) < minimum_values_threshold
):
logger.warning(
logger.debug(
f"The number of values for column {metadata.name}"
f"does not meet minimum threshold for {infotype}"
)
basic_checks_status = False
elif exclude_name is not None and metadata.name in exclude_name:
logger.warning(f"Excluding match for {infotype} on column {metadata.name}")
logger.debug(f"Excluding match for {infotype} on column {metadata.name}")
basic_checks_status = False
# TODO: Add more basic checks
return basic_checks_status

0 comments on commit 08fe465

Please sign in to comment.