added logging

This commit is contained in:
brb
2023-07-06 16:44:37 +02:00
parent 43e4b9788a
commit d1864c7030
+1
View File
@@ -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