diff --git a/services/src/client_info.cpp b/services/src/client_info.cpp index 921ab362ba85a72bc899e10b21537dd8f4e8a9e3..db983ce0cbf98d53406c91be21528cb2bebe4f9b 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; }