From 5a660aee7d0102e1c3ca26c6c6ab20ea32a88cdf Mon Sep 17 00:00:00 2001 From: Qiao Longfei Date: Wed, 28 Nov 2018 16:02:39 +0800 Subject: [PATCH] update log level in parameter prefetch test=develop --- paddle/fluid/operators/distributed/parameter_prefetch.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/paddle/fluid/operators/distributed/parameter_prefetch.cc b/paddle/fluid/operators/distributed/parameter_prefetch.cc index 77cae353133..859ea77a51d 100644 --- a/paddle/fluid/operators/distributed/parameter_prefetch.cc +++ b/paddle/fluid/operators/distributed/parameter_prefetch.cc @@ -146,7 +146,7 @@ static void MergeMultipleVarsIntoOneBySection( } } } else { - VLOG(30) << "ids in this section is empty"; + VLOG(3) << "ids in this section is empty"; } } } @@ -184,13 +184,13 @@ void prefetch(const std::string& id_name, const std::string& out_name, std::vector rets; for (size_t i = 0; i < in_var_names.size(); i++) { if (NeedSend(local_scope, in_var_names[i])) { - VLOG(30) << "sending " << in_var_names[i] << " to " << epmap[i] + VLOG(3) << "sending " << in_var_names[i] << " to " << epmap[i] << " to get " << out_var_names[i] << " back"; rets.push_back(rpc_client->AsyncPrefetchVar( epmap[i], ctx, local_scope, in_var_names[i], out_var_names[i], table_names[i])); } else { - VLOG(30) << "don't send no-initialied variable: " << out_var_names[i]; + VLOG(3) << "don't send no-initialied variable: " << out_var_names[i]; } } -- GitLab