Skip to content

Commit

Permalink
[ESP32]: Remove device name from the ble log as we do not add that in
Browse files Browse the repository at this point in the history
the advertising packet
  • Loading branch information
shubhamdp committed Sep 30, 2022
1 parent 93d0557 commit 1f9312f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/ESP32/nimble/BLEManagerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1177,8 +1177,8 @@ CHIP_ERROR BLEManagerImpl::StartAdvertising(void)
adv_params.itvl_max = CHIP_DEVICE_CONFIG_BLE_SLOW_ADVERTISING_INTERVAL_MAX;
}

ChipLogProgress(DeviceLayer, "Configuring CHIPoBLE advertising (interval %" PRIu32 " ms, %sconnectable, device name %s)",
(((uint32_t) adv_params.itvl_min) * 10) / 16, (connectable) ? "" : "non-", mDeviceName);
ChipLogProgress(DeviceLayer, "Configuring CHIPoBLE advertising (interval %" PRIu32 " ms, %sconnectable)",
(((uint32_t) adv_params.itvl_min) * 10) / 16, (connectable) ? "" : "non-");

{
if (ble_gap_adv_active())
Expand Down

0 comments on commit 1f9312f

Please sign in to comment.