mirror of
https://github.com/esphome/esphome.git
synced 2024-11-29 12:55:46 +01:00
Suppress logging unhandled ESP_BLE_AD_TYPE_INT_RANGE (#4096)
This commit is contained in:
parent
ed42cefeee
commit
fb56b5388e
@ -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);
|
this->service_datas_.push_back(data);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case ESP_BLE_AD_TYPE_INT_RANGE:
|
||||||
|
// Avoid logging this as it's very verbose
|
||||||
|
break;
|
||||||
default: {
|
default: {
|
||||||
ESP_LOGV(TAG, "Unhandled type: advType: 0x%02x", record_type);
|
ESP_LOGV(TAG, "Unhandled type: advType: 0x%02x", record_type);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user