diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5b67d5507..9f502f925 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Support for multiple Heating Circuits (RC35 only for now and writing via telnet) - https://github.com/proddy/EMS-ESP/issues/162
+- mqttlog command also shows which MQTT topics it is subscribed too
### Fixed
diff --git a/src/MyESP.cpp b/src/MyESP.cpp
index 178c17c05..f94fedecd 100644
--- a/src/MyESP.cpp
+++ b/src/MyESP.cpp
@@ -359,7 +359,7 @@ void MyESP::mqttSubscribe(const char * topic) {
myDebug_P(PSTR("[MQTT] Subscribing to %s"), topic_s);
// add to mqtt log
- _addMQTTLog(topic_s, "", 2); // type of 2 means Subscribe. Has an empty payload for now XXX
+ _addMQTTLog(topic_s, "", 2); // type of 2 means Subscribe. Has an empty payload for now
}
}
diff --git a/src/custom.htm b/src/custom.htm
index 01ddd4aed..a875c89c1 100644
--- a/src/custom.htm
+++ b/src/custom.htm
@@ -122,19 +122,6 @@
-