diff --git a/mqtt.go b/mqtt.go
index f377f6722d8ebebec942b8db95cbd60cf14b1003..8b44ca4158101565c5c84128083d8bafce43bea0 100644
--- a/mqtt.go
+++ b/mqtt.go
@@ -31,13 +31,13 @@ func MQTTSetup(cfg *Config, publishHandler mqtt.MessageHandler) mqtt.Client {
 	return client
 }
 
-func MQTTSubscribe(client mqtt.Client, cfg *Config) error {
-	token := client.Subscribe(cfg.topic+"/#", 0, nil)
-	if err := token.Wait(); token.Error() != nil {
-		return fmt.Errorf("failed to subscribe to topic '%s/#': %v", cfg.topic, err)
+func MQTTSubscribe(client mqtt.Client, cfg *Config) {
+	topic := cfg.topic + "/#"
+	token := client.Subscribe(topic, 0, nil)
+	if token.Wait(); token.Error() != nil {
+		slog.Warn("MQTTSubscribe failed", "topic", topic, "err", token.Error())
 	}
-	slog.Debug("Subscribed to", "Topic", cfg.topic+"/#")
-	return nil
+	slog.Debug("Subscribed to", "Topic", topic)
 }
 
 func MQTTLostCnx(client mqtt.Client, err error) {
@@ -51,5 +51,5 @@ func MQTTDumpMsg(msg mqtt.Message) {
 	if err != nil {
 		slog.Error("Error decoding JSON %v", "topic", msg.Topic(), "err", err)
 	}
-	jsonDump(data)
+	jsonDump("MQTT update", data)
 }
diff --git a/utils.go b/utils.go
index ada4f971b8979e283f744b1d95175068a3750b1d..6d3e6d1c0ae63fd5b03b995dc9a2463d774ee80f 100644
--- a/utils.go
+++ b/utils.go
@@ -24,7 +24,7 @@ func hexStringToInteger(hexString string) (uint64, error) {
 	return integerValue, nil
 }
 
-func jsonDump(data map[string]interface{}) {
+func jsonDump(title string, data map[string]interface{}) {
 	// sort keys
 	keys := make([]string, 0)
 	for key := range data {
@@ -33,7 +33,7 @@ func jsonDump(data map[string]interface{}) {
 	sort.Strings(keys)
 	// dump keys
 	tab := table.NewWriter()
-	tab.SetTitle("MQTT update")
+	tab.SetTitle(title)
 	tab.SetStyle(table.StyleRounded)
 	for _, key := range keys {
 		if key != "update" {
diff --git a/xaal.go b/xaal.go
index df097ec686ee9071a45f61e06ea24652d5f981b5..042b199be5a77798b91852b5a7eba50c15cfadbc 100644
--- a/xaal.go
+++ b/xaal.go
@@ -526,5 +526,5 @@ func NewDebugDevice(addr uuid.UUID, zDev *Z2MDevice, exp *Expose) XAALDeviceInte
 
 func (dev *DebugDevice) update(payload map[string]interface{}) {
 	slog.Info("Debug Device update", "payload", payload)
-	jsonDump(payload)
+	jsonDump("Debug Device update", payload)
 }