@@ -381,7 +381,8 @@ class DevicePairedCommand : public Controller::DevicePairingDelegate
381
381
if (pairingCommand)
382
382
{
383
383
ChipLogProgress (DeviceLayer,
384
- " OnDeviceConnectedFn - Updating ACL for node id: " ChipLogFormatX64 " and vendor id: %d and product id: %d" ,
384
+ " OnDeviceConnectedFn - Updating ACL for node id: " ChipLogFormatX64
385
+ " and vendor id: %d and product id: %d" ,
385
386
ChipLogValueX64 (cbContext->nodeId ), cbContext->vendorId , cbContext->productId );
386
387
387
388
GetCommissionerDiscoveryController ()->CommissioningSucceeded (cbContext->vendorId , cbContext->productId ,
@@ -397,7 +398,8 @@ class DevicePairedCommand : public Controller::DevicePairingDelegate
397
398
if (pairingCommand)
398
399
{
399
400
ChipLogProgress (DeviceLayer,
400
- " OnDeviceConnectionFailureFn - Not updating ACL for node id: " ChipLogFormatX64 " and vendor id: %d and product id: %d" ,
401
+ " OnDeviceConnectionFailureFn - Not updating ACL for node id: " ChipLogFormatX64
402
+ " and vendor id: %d and product id: %d" ,
401
403
ChipLogValueX64 (cbContext->nodeId ), cbContext->vendorId , cbContext->productId );
402
404
// TODO: Remove Node Id
403
405
}
@@ -408,7 +410,8 @@ class DevicePairedCommand : public Controller::DevicePairingDelegate
408
410
std::shared_ptr<CallbackContext> mContext ;
409
411
};
410
412
411
- void refreshConnectedClientsAcl (uint16_t vendorId, uint16_t productId, ContentAppImpl * app) {
413
+ void refreshConnectedClientsAcl (uint16_t vendorId, uint16_t productId, ContentAppImpl * app)
414
+ {
412
415
413
416
std::set<NodeId> nodeIds = ContentAppPlatform::GetInstance ().GetNodeIdsForContentApp (vendorId, productId);
414
417
@@ -422,8 +425,9 @@ void refreshConnectedClientsAcl(uint16_t vendorId, uint16_t productId, ContentAp
422
425
for (const auto & nodeId : nodeIds)
423
426
{
424
427
425
- ChipLogProgress (DeviceLayer, " Creating Pairing Command with node id: " ChipLogFormatX64 " and vendor id: %d and product id: %d" , ChipLogValueX64 (nodeId),
426
- vendorId, productId);
428
+ ChipLogProgress (DeviceLayer,
429
+ " Creating Pairing Command with node id: " ChipLogFormatX64 " and vendor id: %d and product id: %d" ,
430
+ ChipLogValueX64 (nodeId), vendorId, productId);
427
431
428
432
std::shared_ptr<DevicePairedCommand> pairingCommand = std::make_shared<DevicePairedCommand>(vendorId, productId, nodeId);
429
433
0 commit comments