1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-09 14:52:20 +01:00

feat: add debug logging for output level setting in dynamic_lamp loop

This commit is contained in:
Oliver Kleinecke
2025-02-15 22:15:46 +01:00
parent 661ca4944e
commit c34f1e5559

View File

@@ -83,6 +83,7 @@ void DynamicLampComponent::loop() {
this->status_set_warning(); this->status_set_warning();
continue; continue;
} }
ESP_LOGV(TAG, "Setting output %s to level %f", this->available_outputs_[j].output_id.c_str(), state);
this->available_outputs_[j].output->set_level(new_state); this->available_outputs_[j].output->set_level(new_state);
} }
} }