From 0aa26565d8954a2c36da5ffae101c4640263cf41 Mon Sep 17 00:00:00 2001 From: Yufeng Wang Date: Fri, 8 Nov 2024 17:58:38 -0800 Subject: [PATCH] [Fabric-Sync] Remove incorrect logs (#36443) --- examples/fabric-sync/admin/DeviceManager.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/fabric-sync/admin/DeviceManager.cpp b/examples/fabric-sync/admin/DeviceManager.cpp index 5c41bbb56f7b83..76863e6a33869e 100644 --- a/examples/fabric-sync/admin/DeviceManager.cpp +++ b/examples/fabric-sync/admin/DeviceManager.cpp @@ -75,7 +75,6 @@ CHIP_ERROR DeviceManager::PairRemoteFabricBridge(NodeId nodeId, uint32_t setupPI return err; } - ChipLogProgress(NotSpecified, "Successfully paired remote fabric bridge: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId)); return CHIP_NO_ERROR; } @@ -90,7 +89,6 @@ CHIP_ERROR DeviceManager::PairRemoteDevice(NodeId nodeId, const char * payload) return err; } - ChipLogProgress(NotSpecified, "Successfully paired device: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId)); return CHIP_NO_ERROR; } @@ -106,7 +104,6 @@ CHIP_ERROR DeviceManager::PairRemoteDevice(NodeId nodeId, uint32_t setupPINCode, return err; } - ChipLogProgress(NotSpecified, "Successfully paired device: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId)); return CHIP_NO_ERROR; } @@ -125,8 +122,6 @@ CHIP_ERROR DeviceManager::UnpairRemoteFabricBridge() return err; } - ChipLogProgress(NotSpecified, "Successfully unpaired remote fabric bridge: Node ID " ChipLogFormatX64, - ChipLogValueX64(mRemoteBridgeNodeId)); return CHIP_NO_ERROR; } @@ -139,7 +134,6 @@ CHIP_ERROR DeviceManager::UnpairRemoteDevice(NodeId nodeId) return err; } - ChipLogProgress(NotSpecified, "Successfully unpaired remote device: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId)); return CHIP_NO_ERROR; }