From f3b0aa5184a6519f18a53cd120a6ea72d7b98a95 Mon Sep 17 00:00:00 2001 From: Roy Lane Date: Tue, 14 Jan 2025 16:25:05 -0500 Subject: [PATCH] temp log for ScubaResults JSON creation --- scubagoggles/orchestrator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scubagoggles/orchestrator.py b/scubagoggles/orchestrator.py index a1601f55..00759e1e 100644 --- a/scubagoggles/orchestrator.py +++ b/scubagoggles/orchestrator.py @@ -319,6 +319,7 @@ def _run_reporter(self): total_output.update({'Raw': raw_data}) report_file = out_folder / f'{out_jsonfile}.json' + log.warning('%s created', str(report_file)) with report_file.open('w', encoding = 'utf-8') as results_file: json.dump(total_output, results_file, indent = 4)