Skip to content

Commit

Permalink
Fix confusing logs (apache#13017)
Browse files Browse the repository at this point in the history
  • Loading branch information
315157973 authored and fangxiaobing committed Dec 19, 2021
1 parent 68b434e commit f7b05ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void run(Timeout t) throws Exception {
try {
ConcurrentOpenHashSet<MessageId> headPartition = timePartitions.removeFirst();
if (!headPartition.isEmpty()) {
log.warn("[{}] {} messages have timed-out", consumerBase, headPartition.size());
log.info("[{}] {} messages will be re-delivered", consumerBase, headPartition.size());
headPartition.forEach(messageId -> {
addChunkedMessageIdsAndRemoveFromSequenceMap(messageId, messageIds, consumerBase);
messageIds.add(messageId);
Expand Down

0 comments on commit f7b05ea

Please sign in to comment.