From 4d2a4bb27a3675a66890315bc054749c68d9b8ad Mon Sep 17 00:00:00 2001 From: gongweibao Date: Wed, 6 Jan 2021 11:13:54 +0800 Subject: [PATCH] fix logs info test=develop (#30071) --- python/paddle/distributed/fleet/launch_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/paddle/distributed/fleet/launch_utils.py b/python/paddle/distributed/fleet/launch_utils.py index 32d2f784e08..625e8a476b5 100644 --- a/python/paddle/distributed/fleet/launch_utils.py +++ b/python/paddle/distributed/fleet/launch_utils.py @@ -471,8 +471,8 @@ def start_local_trainers(cluster, pretty_print_envs(proc_env, ("Distributed Envs", "Value")))) logger.info( - "details abouts PADDLE_TRAINER_ENDPOINTS can be found in {}/endpoints.log.". - format(log_dir)) + "details abouts PADDLE_TRAINER_ENDPOINTS can be found in {}/endpoints.log, and detail running logs maybe found in {}/workerlog.0". + format(log_dir, log_dir)) fn = None if log_dir is not None: os.system("mkdir -p {}".format(log_dir)) -- GitLab