Skip to content

Commit

Permalink
Suppress logging unhandled ESP_BLE_AD_TYPE_INT_RANGE (esphome#4096)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Nov 28, 2022
1 parent ed42cef commit fb56b53
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,9 @@ void ESPBTDevice::parse_adv_(const esp_ble_gap_cb_param_t::ble_scan_result_evt_p
this->service_datas_.push_back(data);
break;
}
case ESP_BLE_AD_TYPE_INT_RANGE:
// Avoid logging this as it's very verbose
break;
default: {
ESP_LOGV(TAG, "Unhandled type: advType: 0x%02x", record_type);
break;
Expand Down

0 comments on commit fb56b53

Please sign in to comment.