From 130bf66ff245a91b0be5607e68c9a40dfdde07b7 Mon Sep 17 00:00:00 2001 From: Juliandocode <53322908+donggook-me@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:12:32 +0900 Subject: [PATCH] Update driver.py print message beginner users might be confused by this printed message. Regardless of whether the process successfully work or not, it prints same message with log file path. But when process doesn't work because of several each user's env reason, the error log just printed on the {job_name}_logging under root directory. So in this case they need to check this file. --- docker/driver.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/driver.py b/docker/driver.py index d16a79e5..ab94cec9 100644 --- a/docker/driver.py +++ b/docker/driver.py @@ -243,6 +243,7 @@ def process_cmd(yaml_file, local=False): print(f"Submitted job, please check your logs {job_conf['log_path']}/logs/{job_conf['job_name']}/{time_stamp} for status") + print(f"if you cannot find logs directory on the path, you need to check ""{job_name}_logging"" log file under FEDSCALE root directory.") def terminate(job_name):