From 5d690e6604ea486de2f5a82ef82c157c55f90464 Mon Sep 17 00:00:00 2001 From: fheinrich <fheinrich@techfak.uni-bielefeld.de> Date: Tue, 6 Feb 2024 11:01:33 +0100 Subject: [PATCH] clickable file links in terminal log output --- overcooked_simulator/recording.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overcooked_simulator/recording.py b/overcooked_simulator/recording.py index 9af7e0fb..17a65ce0 100644 --- a/overcooked_simulator/recording.py +++ b/overcooked_simulator/recording.py @@ -48,7 +48,7 @@ class LogRecorder: else: log_path = Path(log_path) self.log_path = log_path - log.info(f"Recorder record for {name} in {log_path}") + log.info(f"Recorder record for {name} in file://{log_path}") os.makedirs(log_path.parent, exist_ok=True) def __call__(self, hook_ref: str, env: Environment, **kwargs): -- GitLab