Skip to content

Commit

Permalink
Make debug message clearer in popWithMsgId()
Browse files Browse the repository at this point in the history
  • Loading branch information
smukil committed Oct 2, 2019
1 parent 6975b46 commit c3fc231
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public Message popWithMsgIdHelper(String messageId, String targetShard) {
} catch (NullPointerException e) {
// If we get a NPE, that means "messageId" does not exist in the sorted set.
if (logger.isDebugEnabled()) {
logger.debug("Cannot get the message payload for {}", messageId);
logger.debug("Cannot find the message with ID {}", messageId);
}
monitor.misses.increment();
return null;
Expand Down

0 comments on commit c3fc231

Please sign in to comment.