Jetty9 - Logging idle timeouts.

This commit is contained in:
Simone Bordet 2012-08-27 09:21:35 +02:00
parent 7b58c584b9
commit 5a3a25c880
1 changed files with 2 additions and 0 deletions

View File

@ -141,6 +141,8 @@ public class SPDYConnection extends AbstractConnection implements Controller<Sta
@Override @Override
protected boolean onReadTimeout() protected boolean onReadTimeout()
{ {
boolean idle = this.idle;
LOG.debug("Idle timeout on {}, idle={}", this, idle);
if (idle) if (idle)
goAway(session); goAway(session);
return false; return false;