Align Logging Level for Listener Timeout Exceptions with Debug
This commit is contained in:
parent
9e16d81cf8
commit
9826a322ef
|
@ -662,7 +662,7 @@ public class HttpChannelState
|
||||||
catch (Throwable x)
|
catch (Throwable x)
|
||||||
{
|
{
|
||||||
if (LOG.isDebugEnabled())
|
if (LOG.isDebugEnabled())
|
||||||
LOG.warn("{} while invoking onTimeout listener {}", x.toString(), listener, x);
|
LOG.debug("{} while invoking onTimeout listener {}", x.toString(), listener, x);
|
||||||
else
|
else
|
||||||
LOG.warn("{} while invoking onTimeout listener {}", x.toString(), listener);
|
LOG.warn("{} while invoking onTimeout listener {}", x.toString(), listener);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue