Align Logging Level for Listener Timeout Exceptions with Debug

This commit is contained in:
LoggingResearch 2023-07-19 15:03:20 +08:00 committed by GitHub
parent 9e16d81cf8
commit 9826a322ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}