Skip to content

Commit

Permalink
log formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nskobov committed Dec 4, 2023
1 parent 7415b36 commit 6587f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panther_analysis_tool/analysis_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def disable_all_base_detections(paths: List[str], ignore_files: List[str]) -> No
for analysis_spec_res in analysis_specs:
rule: Dict[str, Any] = analysis_spec_res.analysis_spec
if rule.get(rule_id_key, "") == base_detection_id:
logging.info(f"Setting {enabled_key}=False for {analysis_spec_res.spec_filename}")
logging.info("Setting %s=False for %s", enabled_key, analysis_spec_res.spec_filename)
rule[enabled_key] = False
analysis_spec_res.serialize_to_file()

Expand Down

0 comments on commit 6587f8e

Please sign in to comment.