Don't do VLOG(0) in mutable_graph_view

PiperOrigin-RevId: 225468686
This commit is contained in:
Eugene Zhulenev 2018-12-13 18:03:31 -08:00 committed by TensorFlower Gardener
parent 22c895f3b2
commit 45a6f48469

View File

@ -68,7 +68,7 @@ void MutableGraphView::UpdateFanouts(absl::string_view from_node,
}
void MutableGraphView::UpdateFanouts(NodeDef* from_node, NodeDef* to_node) {
VLOG(0) << absl::Substitute("Update fanouts from '$0' to '$1'.",
VLOG(2) << absl::Substitute("Update fanouts from '$0' to '$1'.",
from_node->name(), to_node->name());
// Update internal state with the new output_port->input_port edge.