From 7fd53073afb97397192c12e49c155b2ed98bf612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B2=E6=99=93=E6=99=93?= Date: Wed, 24 Jul 2024 19:41:04 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=94=E7=A6=BB=E6=97=A0=E7=94=A8=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 史晓晓 --- services/service/src/softbus/softbus_listener.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/service/src/softbus/softbus_listener.cpp b/services/service/src/softbus/softbus_listener.cpp index 901c7b26..bb9cbb6b 100644 --- a/services/service/src/softbus/softbus_listener.cpp +++ b/services/service/src/softbus/softbus_listener.cpp @@ -287,6 +287,7 @@ void SoftbusListener::OnSoftbusDeviceFound(const DeviceInfo *device) } DmDeviceInfo dmDevInfo; ConvertDeviceInfoToDmDevice(*device, dmDevInfo); +#ifndef MINE_HARMONY struct RadarInfo info = { .funcName = "OnSoftbusDeviceFound", .stageRes = static_cast(StageRes::STAGE_SUCC), @@ -298,6 +299,7 @@ void SoftbusListener::OnSoftbusDeviceFound(const DeviceInfo *device) LOGE("ReportDiscoverResCallback failed"); } } +#endif LOGI("OnSoftbusDeviceFound: devId=%s, devName=%s, devType=%d, range=%d, isOnline=%d", GetAnonyString(dmDevInfo.deviceId).c_str(), dmDevInfo.deviceName, dmDevInfo.deviceTypeId, dmDevInfo.range, device->isOnline); -- Gitee