mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Suppress logging unhandled ESP_BLE_AD_TYPE_INT_RANGE (#4096)
This commit is contained in:
parent
ed42cefeee
commit
fb56b5388e
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue