mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-14 18:44:52 +00:00
Double dispatch warning should be logged at debug level
This commit is contained in:
parent
2eb3925358
commit
b02535698a
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user