Skip to content

Commit a61ed97

Browse files
authored
fix log level test=develop (#16554)
1 parent 22b02bf commit a61ed97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

paddle/fluid/framework/details/all_reduce_deps_pass.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void AllReduceDepsPass::ApplyImpl(ir::Graph* graph) const {
6868
for (auto& o_it : outputs) {
6969
for (auto& v : o_it.second) { // values
7070
vars[v] = order;
71-
VLOG(1) << "in all_reduce_deps_pass:" << v;
71+
VLOG(10) << "in all_reduce_deps_pass:" << v;
7272
}
7373
}
7474
order++;

paddle/fluid/framework/operator.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ Scope* OperatorWithKernel::PrepareData(
10171017
// of search key even though the set is empty.
10181018
if (!no_buffer_ins.empty() &&
10191019
no_buffer_ins.count(var_name_item.first) > 0) {
1020-
VLOG(1) << "Skip scanning input " << var_name_item.first
1020+
VLOG(7) << "Skip scanning input " << var_name_item.first
10211021
<< " in Operator " << type_;
10221022
continue;
10231023
}

0 commit comments

Comments
 (0)