diff --git a/esphome/components/lora/lora.cpp b/esphome/components/lora/lora.cpp index 3e710084b4..cc5c0a051b 100644 --- a/esphome/components/lora/lora.cpp +++ b/esphome/components/lora/lora.cpp @@ -154,6 +154,7 @@ void Lora::loop() { bool pin_data_found = false; if (!this->available()) return; + ESP_LOGD(TAG, "Reading serial"); while (this->available()) { uint8_t c; if (this->read_byte(&c)) {