Skip to content

Commit 89c7d63

Browse files
authored
[Runtime] Update log level in direct_session. (#935)
Signed-off-by: candy.dc <[email protected]>
1 parent 2d31c8e commit 89c7d63

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
@@ -2185,8 +2185,8 @@ Status DirectSession::GetOrCreateExecutors(
21852185
auto insert_key_status = executors_.emplace(key, insert_result.first->second);
21862186
*executors_and_keys = insert_result.first->second.get();
21872187
if (insert_key_status.second) {
2188-
LOG(INFO) << "Add new unsort key to executors_ map: " << executors_idx++
2189-
<< ", key: " << key << ", this: " << this;
2188+
VLOG(2) << "Add new unsort key to executors_ map: " << executors_idx++
2189+
<< ", key: " << key << ", this: " << this;
21902190
}
21912191

21922192
return Status::OK();

0 commit comments

Comments
 (0)