From 314b54a8435a36af4865d231114f2a586ff8a62f Mon Sep 17 00:00:00 2001 From: "candy.dc" Date: Tue, 17 Oct 2023 19:41:28 +0800 Subject: [PATCH] [Runtime] Update log level in direct_session. Signed-off-by: candy.dc --- tensorflow/core/common_runtime/direct_session.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/core/common_runtime/direct_session.cc b/tensorflow/core/common_runtime/direct_session.cc index 9670e838f88..a3dd3eba2ed 100644 --- a/tensorflow/core/common_runtime/direct_session.cc +++ b/tensorflow/core/common_runtime/direct_session.cc @@ -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();