From 0ca41fc3285dbe2f910fc2c6899ce7dc5d27c228 Mon Sep 17 00:00:00 2001 From: Chi Zhang Date: Thu, 9 Apr 2026 00:12:18 +0800 Subject: [PATCH] Update file logger path output to absolute path --- verl/utils/tracking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verl/utils/tracking.py b/verl/utils/tracking.py index 263e2a15fa2..a2f5d142dcc 100644 --- a/verl/utils/tracking.py +++ b/verl/utils/tracking.py @@ -263,7 +263,7 @@ def __init__(self, project_name: str, experiment_name: str): directory = os.path.join(root_path, self.project_name) os.makedirs(directory, exist_ok=True) self.filepath = os.path.join(directory, f"{self.experiment_name}.jsonl") - print(f"Creating file logger at {self.filepath}") + print(f"Creating file logger at {os.path.abspath(self.filepath)}") self.fp = open(self.filepath, "wb", buffering=0) def log(self, data, step):