Skip to content

Commit

Permalink
[websocket] Remove System.out.println from ConsumerHandler (#11459)
Browse files Browse the repository at this point in the history
`System.out.println` is called in the code of WebSocket proxy. This seems to be for debugging and I think it should be removed.
  • Loading branch information
Masahiro Sakamoto committed Jul 27, 2021
1 parent 3afbef2 commit ee202d0
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -283,7 +283,6 @@ private void handleAck(ConsumerCommand command) throws IOException {
private void handleNack(ConsumerCommand command) throws IOException {
MessageId msgId = MessageId.fromByteArrayWithTopic(Base64.getDecoder().decode(command.messageId),
topic.toString());
System.out.println(msgId);
consumer.negativeAcknowledge(msgId);
checkResumeReceive();
}
Expand Down

0 comments on commit ee202d0

Please sign in to comment.