Skip to content

Commit

Permalink
Reduced log level for no retained messages, as it happens often (moqu…
Browse files Browse the repository at this point in the history
  • Loading branch information
hylkevds authored May 25, 2024
1 parent d784d67 commit 1264ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion broker/src/main/java/io/moquette/broker/PostOffice.java
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ private void publishRetainedMessagesForSubscriptions(String clientID, Collection
final Collection<RetainedMessage> retainedMsgs = retainedRepository.retainedOnTopic(topicFilter);

if (retainedMsgs.isEmpty()) {
LOG.info("No retained messages matching topic filter {}", topicFilter);
LOG.debug("No retained messages matching topic filter {}", topicFilter);
continue;
}

Expand Down

0 comments on commit 1264ce6

Please sign in to comment.