removed some debug statements

This commit is contained in:
proddy
2020-07-20 15:55:15 +02:00
parent 63e75c2d63
commit 64928d0a4e
2 changed files with 0 additions and 7 deletions

View File

@@ -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);

View File

@@ -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);