From 19bec2fe97b869d5c069e6cf9dfb944010856410 Mon Sep 17 00:00:00 2001 From: gongweibao Date: Wed, 6 Jan 2021 10:58:39 +0800 Subject: [PATCH] Cherrypick 30071 (#30074) * fix log test=release/2.0 * fix ut test=develop --- 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 971e3877393..5d56f77ca17 100644 --- a/python/paddle/distributed/fleet/launch_utils.py +++ b/python/paddle/distributed/fleet/launch_utils.py @@ -472,8 +472,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