Skip to content

Commit

Permalink
changes log level on unsupported frames
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Dokuka <[email protected]>
  • Loading branch information
OlegDokuka committed May 11, 2020
1 parent 3252c2d commit aa16de1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -611,8 +611,8 @@ private void handleStreamZero(FrameType type, ByteBuf frame) {
break;
default:
// Ignore unknown frames. Throwing an error will close the socket.
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Requester received unsupported frame on stream 0: " + frame.toString());
if (LOGGER.isInfoEnabled()) {
LOGGER.info("Requester received unsupported frame on stream 0: " + frame.toString());
}
}
}
Expand Down

0 comments on commit aa16de1

Please sign in to comment.