Reduce verbosity

This commit is contained in:
fvanroie 2021-03-12 04:14:21 +01:00
parent 4d6f59bb19
commit b57a5a6931

View File

@ -226,7 +226,7 @@ int mqttPublish(const char* topic, const char* payload, size_t len, bool retain)
LOG_ERROR(TAG_MQTT_PUB, F(D_MQTT_FAILED " '%s' => %s"), topic, payload);
return MQTT_ERR_PUB_FAIL;
} else {
LOG_TRACE(TAG_MQTT_PUB, F("'%s' => %s OK"), topic, payload);
// LOG_TRACE(TAG_MQTT_PUB, F("'%s' => %s OK"), topic, payload);
return MQTT_ERR_OK;
}
}