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

fix: change log level from verbose to config for added output in DynamicLamp

This commit is contained in:
Oliver Kleinecke
2025-02-15 13:09:52 +01:00
parent cf59fc5e01
commit f9b1b50cb6

View File

@@ -129,7 +129,8 @@ void DynamicLamp::add_lamp_output_(std::string lamp_name, LinkedOutput output) {
if (this->active_lamps_[i].name == lamp_name) {
this->active_lamps_[i].used_outputs[output.output_index] = true;
output.in_use = true;
ESP_LOGV(TAG, "Added output %s to lamp %s", output.output_id.c_str(), lamp_name.c_str());
//ESP_LOGV(TAG, "Added output %s to lamp %s", output.output_id.c_str(), lamp_name.c_str());
ESP_LOGCONFIG(TAG, "Added output %s to lamp %s", output.output_id.c_str(), lamp_name.c_str());
return;
}
i++;