Skip to content

Commit

Permalink
Fix logging format
Browse files Browse the repository at this point in the history
  • Loading branch information
nazywam committed Feb 6, 2024
1 parent bfc25ac commit 59ebb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion karton/config_extractor/config_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def analyze_sample(self, task: Task, sample: ResourceBase) -> None:
legacy_config, karton_tasks = self.preprocess_config(config)

if len(legacy_config) > 1:
self.log.info("Got config: {}".format(json.dumps(legacy_config)))
self.log.info("Got config: %s", json.dumps(config))
self.report_config(task, legacy_config, sample)

for child_task in karton_tasks:
Expand Down

0 comments on commit 59ebb0d

Please sign in to comment.