[mqtt] Add Topic Name for Incoming Payload Not Supported (#15872)

Signed-off-by: bill <git@billforsyth.net>
Co-authored-by: Bill Forsyth <git@billforsyth.net>
This commit is contained in:
billfor 2023-11-11 07:45:31 -05:00 committed by GitHub
parent 50e1687472
commit d0c70f88b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ public class ChannelState implements MqttMessageSubscriber {
Command command = TypeParser.parseCommand(cachedValue.getSupportedCommandTypes(), strValue);
if (command == null) {
logger.warn("Incoming payload '{}' not supported by type '{}'", strValue,
logger.warn("Incoming payload '{}' on '{}' not supported by type '{}'", strValue, topic,
cachedValue.getClass().getSimpleName());
receivedOrTimeout();
return;