change log warning for fillAndParse errors to debug log

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2020-09-02 09:55:18 +10:00
parent abb5ae8812
commit 5bdcea2a49
1 changed files with 3 additions and 1 deletions

View File

@ -469,7 +469,9 @@ public class WebSocketConnection extends AbstractConnection implements Connectio
}
catch (Throwable t)
{
LOG.warn("Error during fillAndParse()", t);
if (LOG.isDebugEnabled())
LOG.debug("Error during fillAndParse()", t);
if (networkBuffer != null)
{
BufferUtil.clear(networkBuffer.getBuffer());