413291 Avoid SPDY double dispatch

reduced warning to only when debug is on
This commit is contained in:
Greg Wilkins 2013-07-19 11:16:51 +10:00
parent fede2a7151
commit be00279e7e
1 changed files with 2 additions and 2 deletions

View File

@ -223,8 +223,8 @@ public class HttpChannelState
_async=null;
return Action.ASYNC_EXPIRED;
case STARTED:
// TODO
LOG.warn("TODO Fix this double dispatch",new IllegalStateException(this.getStatusString()));
if (DEBUG)
LOG.warn("TODO Fix this double dispatch",new IllegalStateException(this.getStatusString()));
return Action.WAIT;
}
}