Skip to content

Commit

Permalink
Merge pull request #165 from Skyscanner/decrease_logging_level
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciobolonio committed Mar 17, 2021
2 parents ff04584 + 5643006 commit 0076bd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.0.1] - 2021-03-17
### Improvements
- Decrease logging level when loading external filters

## [1.0.0] - 2021-03-16
### Breaking changes
- `Filter` include the set of rules in which it is applied.
Expand Down
2 changes: 1 addition & 1 deletion cfripper/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def add_filters_from_dir(self, path: str):
# Validate filters format
RulesFiltersMapping(__root__=filters)
self.add_filters(filters=filters)
logger.info(f"{filename} loaded")
logger.debug(f"{filename} loaded")
except Exception:
logger.exception(f"Failed to read files in path: {path}")
raise
Expand Down

0 comments on commit 0076bd8

Please sign in to comment.