VLOG(2) instead of VLOG(1) for detailed op printouts.

PiperOrigin-RevId: 157291238
This commit is contained in:
A. Unique TensorFlower 2017-05-26 21:33:02 -07:00 committed by TensorFlower Gardener
parent b4466279a6
commit eb2f6d0410

View File

@ -475,9 +475,9 @@ Costs VirtualScheduler::Summary() const {
}
// Also log the op description and their corresponding counts.
VLOG(1) << "Node description, counts, cost:";
VLOG(2) << "Node description, counts, cost:";
for (const auto& item : op_counts_) {
VLOG(1) << "Node: " << item.first << ", Count: " << item.second
VLOG(2) << "Node: " << item.first << ", Count: " << item.second
<< ", Individual Cost: " << op_costs_.at(item.first);
}