Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UNDERTOW-447] Debug message on mod_cluster MCMP handler creation. #7538

Merged
merged 1 commit into from
Aug 4, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import org.jboss.msc.value.InjectedValue;
import org.wildfly.extension.io.IOServices;
import org.wildfly.extension.undertow.UndertowService;
import org.wildfly.extension.undertow.logging.UndertowLogger;
import org.xnio.XnioWorker;

import io.undertow.predicate.Predicate;
Expand Down Expand Up @@ -132,7 +133,8 @@ public void handleRequest(HttpServerExchange exchange) throws Exception {
}
}
};
if(predicate != null) {
UndertowLogger.ROOT_LOGGER.debug("HttpHandler for mod_cluster MCMP created.");
if (predicate != null) {
return new PredicateHandler(predicate, theHandler, next);
} else {
return theHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public interface UndertowLogger extends BasicLogger {
void sharedSessionConfigNotInRootDeployment(String deployment);

@Message(id = 70, value = "Could not load handler %s from %s module")
RuntimeException couldNotLoadHandlerFromModule(String className,String moduleName, @Cause Exception e);
RuntimeException couldNotLoadHandlerFromModule(String className, String moduleName, @Cause Exception e);

@LogMessage(level = ERROR)
@Message(id = 71, value = "Jetty ALPN not found. HTTP2 and SPDY are not available. Please make sure Jetty ALPN is on the boot class path.")
Expand Down