diff --git a/esphome/components/ebyte_lora/ebyte_lora.cpp b/esphome/components/ebyte_lora/ebyte_lora.cpp index 3208f4178c..455c7a2eed 100644 --- a/esphome/components/ebyte_lora/ebyte_lora.cpp +++ b/esphome/components/ebyte_lora/ebyte_lora.cpp @@ -213,7 +213,9 @@ void EbyteLoraComponent::update() { this->get_current_config_(); return; } else { - if (!this->check_config_()) { + if (this->check_config_()) { + ESP_LOGD(TAG, "Config is good to go!"); + } else { ESP_LOGD(TAG, "Config is not right, have to do something about that!"); } }