mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
removed some debug statements
This commit is contained in:
@@ -324,10 +324,6 @@ void Boiler::publish_values() {
|
|||||||
doc["serviceCodeNumber"] = serviceCode_;
|
doc["serviceCodeNumber"] = serviceCode_;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef EMSESP_DEBUG
|
|
||||||
LOG_DEBUG(F("[DEBUG] Performing a boiler publish"));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// if we have data, publish it
|
// if we have data, publish it
|
||||||
if (!doc.isNull()) {
|
if (!doc.isNull()) {
|
||||||
Mqtt::publish("boiler_data", doc);
|
Mqtt::publish("boiler_data", doc);
|
||||||
|
|||||||
@@ -118,9 +118,6 @@ void Mixing::publish_values() {
|
|||||||
doc["flowSetTemp"] = flowSetTemp_;
|
doc["flowSetTemp"] = flowSetTemp_;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef EMSESP_DEBUG
|
|
||||||
LOG_DEBUG(F("[DEBUG] Performing a mixing module publish"));
|
|
||||||
#endif
|
|
||||||
char topic[30];
|
char topic[30];
|
||||||
char s[3]; // for formatting strings
|
char s[3]; // for formatting strings
|
||||||
strlcpy(topic, "mixing_data", 30);
|
strlcpy(topic, "mixing_data", 30);
|
||||||
|
|||||||
Reference in New Issue
Block a user