Merge pull request #10127 from LoggingResearch/jetty-10.0.x
Align Logging Level for Listener Timeout Exceptions with Debug
This commit is contained in:
commit
cd804fd8de
|
@ -662,7 +662,7 @@ public class HttpChannelState
|
|||
catch (Throwable x)
|
||||
{
|
||||
if (LOG.isDebugEnabled())
|
||||
LOG.warn("{} while invoking onTimeout listener {}", x.toString(), listener, x);
|
||||
LOG.debug("{} while invoking onTimeout listener {}", x.toString(), listener, x);
|
||||
else
|
||||
LOG.warn("{} while invoking onTimeout listener {}", x.toString(), listener);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue