Skip to content

Commit

Permalink
[Runtime] Update log level in direct_session. (#935)
Browse files Browse the repository at this point in the history
Signed-off-by: candy.dc <candy.dc@alibaba-inc.com>
  • Loading branch information
candyzone authored Nov 1, 2023
1 parent 2d31c8e commit 89c7d63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/core/common_runtime/direct_session.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2185,8 +2185,8 @@ Status DirectSession::GetOrCreateExecutors(
auto insert_key_status = executors_.emplace(key, insert_result.first->second);
*executors_and_keys = insert_result.first->second.get();
if (insert_key_status.second) {
LOG(INFO) << "Add new unsort key to executors_ map: " << executors_idx++
<< ", key: " << key << ", this: " << this;
VLOG(2) << "Add new unsort key to executors_ map: " << executors_idx++
<< ", key: " << key << ", this: " << this;
}

return Status::OK();
Expand Down

0 comments on commit 89c7d63

Please sign in to comment.