diff --git a/bridge.go b/bridge.go index f9c5c36..6a47767 100644 --- a/bridge.go +++ b/bridge.go @@ -382,8 +382,8 @@ func (br *Bridge) handleMqttMessage(_ mqtt.Client, msg mqtt.Message) { // spawn a goroutine to handle message, since mutex might block go func() { - if br.DebugMode { - log.Printf("received %s: %s", topic, payload) + if br.DebugMode && topic != "bridge/logging" { + log.Printf("received MQTT %s: %s", topic, payload) } br.hapInitMutex.RLock()