Skip to content

Commit 1a3b843

Browse files
committed
disable warning
1 parent b42ced8 commit 1a3b843

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paddle/fluid/framework/ir/graph.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Graph::Graph(const ProgramDesc &program) : program_(program) {
4040
var_nodes[each_var_name] = var;
4141
} else {
4242
// TODO(paddle-dev): Seems some assumption doesn't hold?
43-
LOG(ERROR) << op->Type()
44-
<< " input var not in all_var list: " << each_var_name;
43+
VLOG(3) << op->Type()
44+
<< " input var not in all_var list: " << each_var_name;
4545
var = CreateEmptyNode(each_var_name, ir::Node::Type::kVariable);
4646
var_nodes[each_var_name] = var;
4747
}

0 commit comments

Comments
 (0)