From 2145742efc285a329a37a746382e153fdc718ae1 Mon Sep 17 00:00:00 2001 From: wuzhihuitmac Date: Thu, 31 Jul 2025 14:05:18 +0800 Subject: [PATCH] Remove high frequency log print Signed-off-by: wuzhihuitmac Change-Id: I0a02946a5af8eb57e05146daa30d1bef40b54454 --- frameworks/native/src/sensor_service_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/native/src/sensor_service_client.cpp b/frameworks/native/src/sensor_service_client.cpp index ef54eb57..b4be95d9 100644 --- a/frameworks/native/src/sensor_service_client.cpp +++ b/frameworks/native/src/sensor_service_client.cpp @@ -262,7 +262,7 @@ int32_t SensorServiceClient::GetLocalDeviceId(int32_t& deviceId) } for (const auto& sensor : sensorList_) { if (sensor.GetLocation() == 1) { - SEN_HILOGI("local deviceId is:%{public}d", sensor.GetDeviceId()); + SEN_HILOGD("local deviceId is:%{public}d", sensor.GetDeviceId()); deviceId = sensor.GetDeviceId(); return ERR_OK; } -- Gitee