aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/grappler/utils.cc
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <bsteiner@google.com>2017-11-07 18:46:10 -0800
committerGravatar Andrew Selle <aselle@andyselle.com>2017-11-10 16:14:35 -0800
commita326f60ff52876d4a216fb5d810626e16232467e (patch)
tree193ea1e5b9846ba0d15665a8a53b465b7bd0c441 /tensorflow/core/grappler/utils.cc
parent149257363d06017d48e01ef3137efe23afc160c3 (diff)
Silenced an unnecessary warning
PiperOrigin-RevId: 174947453
Diffstat (limited to 'tensorflow/core/grappler/utils.cc')
-rw-r--r--tensorflow/core/grappler/utils.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/tensorflow/core/grappler/utils.cc b/tensorflow/core/grappler/utils.cc
index d9f4cdb5ae..11bd8fa5cb 100644
--- a/tensorflow/core/grappler/utils.cc
+++ b/tensorflow/core/grappler/utils.cc
@@ -45,7 +45,6 @@ NodeDef* NodeMap::GetNode(const string& name) const {
string node_name = NodeName(name);
auto it = nodes_.find(node_name);
if (it == nodes_.end()) {
- LOG(WARNING) << "Node " << node_name << " is not in the graph.";
return nullptr;
}
return it->second;