Skip to content

Commit

Permalink
Fix log message (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
sed-i authored Feb 6, 2024
1 parent d8d7f33 commit 83b7877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cosl/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def _from_dir(self, dir_path: Path, recursive: bool) -> List[Dict[str, Any]]:
):
groups_from_file = self._from_file(dir_path, file_path)
if groups_from_file:
logger.debug("Reading %s rule from %s", Rules.rule_type, file_path)
logger.debug("Reading %s rule from %s", self.rule_type, file_path)
groups.extend(groups_from_file) # type: ignore

return groups
Expand Down

0 comments on commit 83b7877

Please sign in to comment.