From d1864c70304f2e367c459779adca7598d4509f79 Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 6 Jul 2023 16:44:37 +0200 Subject: [PATCH] added logging --- code/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/code/utils.py b/code/utils.py index c842102..b80555d 100644 --- a/code/utils.py +++ b/code/utils.py @@ -28,5 +28,6 @@ def load_runner_script(path: Path) -> RunnerScript: with open(path, 'r') as fh: script = yaml.safe_load(fh) runner_script = RunnerScript.parse_obj(script) + logging.debug('finished') return runner_script \ No newline at end of file