From 77adb168ca8ddf1504110c03d2efd61ec158dd2d Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Thu, 12 Dec 2024 11:39:06 +0100 Subject: [PATCH] Align setup status on dump --- esphome/components/adc/adc_sensor_esp32_v5.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/adc/adc_sensor_esp32_v5.cpp b/esphome/components/adc/adc_sensor_esp32_v5.cpp index 18c4e319e8..5fe5b35301 100644 --- a/esphome/components/adc/adc_sensor_esp32_v5.cpp +++ b/esphome/components/adc/adc_sensor_esp32_v5.cpp @@ -157,9 +157,9 @@ void ADCSensor::dump_config() { LOG_PIN(" Pin: ", this->pin_); ESP_LOGCONFIG(TAG, " Channel: %d (Unit: %s)", this->channel_, this->is_adc1_ ? "ADC1" : "ADC2"); ESP_LOGCONFIG(TAG, " Setup Status:"); - ESP_LOGCONFIG(TAG, " Handle Init: %s", this->handle_init_complete_ ? "OK" : "FAILED"); - ESP_LOGCONFIG(TAG, " Config: %s", this->config_complete_ ? "OK" : "FAILED"); - ESP_LOGCONFIG(TAG, " Calibration: %s", this->calibration_complete_ ? "OK" : "FAILED"); + ESP_LOGCONFIG(TAG, " Handle Init: %s", this->handle_init_complete_ ? "OK" : "FAILED"); + ESP_LOGCONFIG(TAG, " Config: %s", this->config_complete_ ? "OK" : "FAILED"); + ESP_LOGCONFIG(TAG, " Calibration: %s", this->calibration_complete_ ? "OK" : "FAILED"); ESP_LOGCONFIG(TAG, " Overall Init: %s", this->init_complete_ ? "OK" : "FAILED"); if (this->autorange_) { ESP_LOGCONFIG(TAG, " Attenuation: auto");