Skip to content

Commit

Permalink
[GraphRuntime] remove print from GetInputIndex (#7027)
Browse files Browse the repository at this point in the history
* remove print

* retrigger CI, flaky test failure
  • Loading branch information
samskalicky authored Dec 4, 2020
1 parent 19459e1 commit a78c695
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/runtime/graph/graph_runtime.cc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ int GraphRuntime::GetInputIndex(const std::string& name) {
if (it != input_map_.end()) {
return it->second;
}
LOG(WARNING) << "Warning: cannot find \"" << name << "\" among input";
return -1;
}
/*!
Expand Down

0 comments on commit a78c695

Please sign in to comment.