Skip to content

Commit

Permalink
Use a different logger for NettyByteBody
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Jun 10, 2024
1 parent f1bcb5b commit 2673e94
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
*/
@Internal
public abstract sealed class NettyByteBody implements ByteBody, InternalByteBody permits AvailableNettyByteBody, StreamingNettyByteBody {
protected static final Logger LOG = LoggerFactory.getLogger(NettyByteBody.class);
// don't change this, isolate body buffering to separate logging name space
protected static final Logger LOG = LoggerFactory.getLogger(NettyByteBufferFactory.class);

public static Flux<ByteBuf> toByteBufs(ByteBody body) {
if (body instanceof NettyByteBody net) {
Expand Down

0 comments on commit 2673e94

Please sign in to comment.