Merge pull request #10127 from LoggingResearch/jetty-10.0.x

Align Logging Level for Listener Timeout Exceptions with Debug
This commit is contained in:
Joakim Erdfelt 2024-01-26 09:21:07 -06:00 committed by GitHub
commit cd804fd8de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}