File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/src/org/openqa/selenium/netty/server Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,10 +61,10 @@ class RequestConverter extends SimpleChannelInboundHandler<HttpObject> {
61
61
protected void channelRead0 (
62
62
ChannelHandlerContext ctx ,
63
63
HttpObject msg ) throws Exception {
64
- LOG .fine ( "Incoming message: " + msg );
64
+ LOG .log ( Debug . getDebugLogLevel (), "Incoming message: " + msg );
65
65
66
66
if (msg instanceof io .netty .handler .codec .http .HttpRequest ) {
67
- LOG .fine ( "Start of http request: " + msg );
67
+ LOG .log ( Debug . getDebugLogLevel (), "Start of http request: " + msg );
68
68
69
69
io .netty .handler .codec .http .HttpRequest nettyRequest =
70
70
(io .netty .handler .codec .http .HttpRequest ) msg ;
@@ -113,7 +113,7 @@ protected void channelRead0(
113
113
}
114
114
115
115
if (msg instanceof LastHttpContent ) {
116
- LOG .fine ( "Closing input pipe." );
116
+ LOG .log ( Debug . getDebugLogLevel (), "Closing input pipe." );
117
117
EXECUTOR .submit (() -> {
118
118
try {
119
119
out .close ();
You can’t perform that action at this time.
0 commit comments