From 9c8908ac5f94c47d25502cd9599389d4269c9051 Mon Sep 17 00:00:00 2001 From: wuzhihuitmac Date: Fri, 20 Dec 2024 16:01:34 +0800 Subject: [PATCH] Delete high-frequency printing Signed-off-by: wuzhihuitmac Change-Id: I780bf0a9d249a0835808352bcc39090fff9262ff --- services/src/client_info.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/services/src/client_info.cpp b/services/src/client_info.cpp index 921ab362..db983ce0 100644 --- a/services/src/client_info.cpp +++ b/services/src/client_info.cpp @@ -209,7 +209,6 @@ sptr ClientInfo::GetSensorChannelByPid(int32_t pid) std::vector> ClientInfo::GetSensorChannel(int32_t sensorId) { - SEN_HILOGI("In, sensorId:%{public}d", sensorId); if (sensorId == INVALID_SENSOR_ID) { SEN_HILOGE("sensorId is invalid"); return {}; @@ -232,7 +231,6 @@ std::vector> ClientInfo::GetSensorChannel(int32_t s } sensorChannel.push_back(channelIt->second); } - SEN_HILOGI("Done, sensorId:%{public}d", sensorId); return sensorChannel; } -- Gitee