1

limit debug messages

This commit is contained in:
2025-07-02 17:57:34 -04:00
parent 4afe4c59a1
commit 114290279e
+4 -2
View File
@@ -107,8 +107,10 @@ void Hauslane::loop() {
}
} else if (this->speed==0 && !this->light_cur) {
// reset power flag
this->power=false;
ESP_LOGD(TAG, "Hood power: %d", this->power);
if(this->power) {
this->power=false;
ESP_LOGD(TAG, "Hood power: %d", this->power);
}
}
}
}