This commit is contained in:
J. Nick Koston 2023-06-07 14:56:05 -05:00
parent dc33ae2d3c
commit ed05ab1b05
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ namespace ratgdo {
void RATGDOComponent::sendLightStatus()
{
LightState val = static_cast<LightState>(this->store_.lightState);
ESP_LOGD(TAG, "Light state %s", light_state_to_string(val));
ESP_LOGD(TAG, "Light state %s (%d)", light_state_to_string(val), this->store_.lightState);
for (auto* child : this->children_) {
child->on_light_state(val);
}