diff --git a/CHANGELOG.md b/CHANGELOG.md index 32c8d51a0c..a84410f2c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,10 @@ The types of changes are: ### Fixed - Updating dataset PUT to allow deleting all datasets [#5524](https://github.com/ethyca/fides/pull/5524) +### Removed +- Removed unnecessary debug logging from the load_file config helper [#5544](https://github.com/ethyca/fides/pull/5544) + + ## [2.50.0](https://github.com/ethyca/fides/compare/2.49.1...2.50.0) ### Added diff --git a/src/fides/config/helpers.py b/src/fides/config/helpers.py index e28b5f9bde..c9bb726f55 100644 --- a/src/fides/config/helpers.py +++ b/src/fides/config/helpers.py @@ -7,7 +7,6 @@ from typing import Any, Dict, List, Union from click import echo -from loguru import logger from toml import dump, load DEFAULT_CONFIG_PATH = ".fides/fides.toml" @@ -42,7 +41,6 @@ def load_file(file_names: Union[List[Path], List[str]]) -> str: for file_name in file_names: possible_location = os.path.join(dir_str, file_name) if possible_location and os.path.isfile(possible_location): - logger.debug("Loading file {} from {}", file_name, dir_str) return possible_location raise FileNotFoundError