diff --git a/esphome/components/gpio/binary_sensor/gpio_binary_sensor.cpp b/esphome/components/gpio/binary_sensor/gpio_binary_sensor.cpp index fcb2696090..4a12ef834e 100644 --- a/esphome/components/gpio/binary_sensor/gpio_binary_sensor.cpp +++ b/esphome/components/gpio/binary_sensor/gpio_binary_sensor.cpp @@ -29,7 +29,7 @@ void GPIOBinarySensorStore::setup(InternalGPIOPin *pin, gpio::InterruptType type void GPIOBinarySensor::setup() { if (this->use_interrupt_ && !this->pin_->is_internal()) { - ESP_LOGW(TAG, "Interrupts not supported for this pin type, falling back to polling"); + ESP_LOGD(TAG, "GPIO is not internal, falling back to polling mode"); this->use_interrupt_ = false; }