diff --git a/devices/__init__.py b/devices/__init__.py index 9660bc4..64fbd54 100644 --- a/devices/__init__.py +++ b/devices/__init__.py @@ -100,7 +100,7 @@ class base(dict): "Received data for (%s) %s - %s", self.topic, key, str(self.get(key))) self.callback_caller(key, self[key]) elif key not in self.RX_IGNORE_KEYS: - logger.warning('Got a message with unparsed content "%s"', key) + logger.warning('Got a message from \"%s\"with unparsed content "%s"', self.topic, key) else: logger.debug("Ignoring key %s", key)