Skip to content

Commit f5ba0f6

Browse files
committed
fix(logging): drop message sent/received to debug level (#76)
1 parent 607c03e commit f5ba0f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/aws/greengrass/mqtt/bridge/MessageBridge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private void handleMessage(TopicMapping.TopicType sourceType, Message message) {
111111
Message msg = new Message(targetTopic, message.getPayload());
112112
try {
113113
client.publish(msg);
114-
LOGGER.atInfo().kv(LOG_KEY_SOURCE_TYPE, sourceType).kv(LOG_KEY_SOURCE_TOPIC, fullSourceTopic)
114+
LOGGER.atDebug().kv(LOG_KEY_SOURCE_TYPE, sourceType).kv(LOG_KEY_SOURCE_TOPIC, fullSourceTopic)
115115
.kv(LOG_KEY_TARGET_TYPE, mapping.getTarget())
116116
.kv(LOG_KEY_TARGET_TOPIC, mapping.getTargetTopic())
117117
.kv(LOG_KEY_RESOLVED_TARGET_TOPIC, targetTopic).log("Published message");

0 commit comments

Comments
 (0)