Double dispatch warning should be logged at debug level

This commit is contained in:
Thomas Becker 2013-07-25 17:14:19 +02:00
parent 2eb3925358
commit b02535698a
1 changed files with 2 additions and 3 deletions

View File

@ -21,13 +21,11 @@ package org.eclipse.jetty.server;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
import javax.servlet.AsyncEvent;
import javax.servlet.AsyncListener;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletContext;
import javax.servlet.ServletResponse;
import javax.servlet.WriteListener;
import org.eclipse.jetty.server.handler.ContextHandler;
import org.eclipse.jetty.server.handler.ContextHandler.Context;
@ -224,7 +222,8 @@ public class HttpChannelState
return Action.ASYNC_EXPIRED;
case STARTED:
if (DEBUG)
LOG.warn("TODO Fix this double dispatch",new IllegalStateException(this.getStatusString()));
LOG.debug("TODO Fix this double dispatch",new IllegalStateException(this
.getStatusString()));
return Action.WAIT;
}
}