Skip to content

Commit 0aa2656

Browse files
authored
[Fabric-Sync] Remove incorrect logs (project-chip#36443)
1 parent e25647f commit 0aa2656

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

examples/fabric-sync/admin/DeviceManager.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ CHIP_ERROR DeviceManager::PairRemoteFabricBridge(NodeId nodeId, uint32_t setupPI
7575
return err;
7676
}
7777

78-
ChipLogProgress(NotSpecified, "Successfully paired remote fabric bridge: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId));
7978
return CHIP_NO_ERROR;
8079
}
8180

@@ -90,7 +89,6 @@ CHIP_ERROR DeviceManager::PairRemoteDevice(NodeId nodeId, const char * payload)
9089
return err;
9190
}
9291

93-
ChipLogProgress(NotSpecified, "Successfully paired device: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId));
9492
return CHIP_NO_ERROR;
9593
}
9694

@@ -106,7 +104,6 @@ CHIP_ERROR DeviceManager::PairRemoteDevice(NodeId nodeId, uint32_t setupPINCode,
106104
return err;
107105
}
108106

109-
ChipLogProgress(NotSpecified, "Successfully paired device: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId));
110107
return CHIP_NO_ERROR;
111108
}
112109

@@ -125,8 +122,6 @@ CHIP_ERROR DeviceManager::UnpairRemoteFabricBridge()
125122
return err;
126123
}
127124

128-
ChipLogProgress(NotSpecified, "Successfully unpaired remote fabric bridge: Node ID " ChipLogFormatX64,
129-
ChipLogValueX64(mRemoteBridgeNodeId));
130125
return CHIP_NO_ERROR;
131126
}
132127

@@ -139,7 +134,6 @@ CHIP_ERROR DeviceManager::UnpairRemoteDevice(NodeId nodeId)
139134
return err;
140135
}
141136

142-
ChipLogProgress(NotSpecified, "Successfully unpaired remote device: Node ID " ChipLogFormatX64, ChipLogValueX64(nodeId));
143137
return CHIP_NO_ERROR;
144138
}
145139

0 commit comments

Comments
 (0)