Skip to content

Commit 269f52d

Browse files
authored
[LOG] Change LOG(INFO) to VLOG(2) to avoid too many output msg. (#755)
1 parent ebd925e commit 269f52d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow/core/common_runtime/direct_session.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2156,8 +2156,8 @@ Status DirectSession::GetOrCreateExecutors(
21562156
// Insert this under the original key.
21572157
auto insert_key_status = executors_.emplace(key, it->second);
21582158
if (insert_key_status.second) {
2159-
LOG(INFO) << "Add new unsort key to executors_ map: " << executors_idx++
2160-
<< ", key: " << key << ", this: " << this;
2159+
VLOG(2) << "Add new unsort key to executors_ map: " << executors_idx++
2160+
<< ", key: " << key << ", this: " << this;
21612161
}
21622162
return Status::OK();
21632163
}

0 commit comments

Comments
 (0)