Skip to content

Commit

Permalink
[Fabric-Sync] Remove incorrect logs (project-chip#36443)
Browse files Browse the repository at this point in the history
  • Loading branch information
yufengwangca authored Nov 9, 2024
1 parent e25647f commit 0aa2656
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions examples/fabric-sync/admin/DeviceManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand All @@ -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;
}

Expand All @@ -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;
}

Expand All @@ -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;
}

Expand Down

0 comments on commit 0aa2656

Please sign in to comment.