| Index: topological_sort.cc
|
| diff --git a/topological_sort.cc b/topological_sort.cc
|
| index 8422849c7d84e92813c45a7adea674da5e5090bd..5af8cc440bd1c5805ab9d323eca40a8fa37c9e69 100644
|
| --- a/topological_sort.cc
|
| +++ b/topological_sort.cc
|
| @@ -27,8 +27,6 @@ void TopologicalSortVisit(const Graph& graph,
|
| TopologicalSortVisit(graph, visited_nodes, nodes, it->first);
|
| }
|
| // Visit this node.
|
| - LOG(INFO) << graph[node].file_name << " " << graph[node].op.type() << " "
|
| - << graph[node].op.data_length();
|
| nodes->push_back(node);
|
| }
|
| } // namespace {}
|
|
|