You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Currently, CustomRequestLog requires constructor parameters.
This does not play well with the Jetty Maven Plugin, which expects a RequestLog instance, but it's going to be difficult to instantiate from a pom.xml file.
While it is true that custom RequestLog configurations may be provided with a Jetty XML file, simple usages will benefit from a parameterless CustomRequestLog.
Example in CometD 6:
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<requestLogimplementation="org.eclipse.jetty.server.Slf4jRequestLog" /> // Present in Jetty 9.4.x, but not in 10.0.x.
...
</configuration>
</plugin>
The text was updated successfully, but these errors were encountered:
Jetty version
10.0.x
Description
Currently,
CustomRequestLog
requires constructor parameters.This does not play well with the Jetty Maven Plugin, which expects a
RequestLog
instance, but it's going to be difficult to instantiate from apom.xml
file.While it is true that custom
RequestLog
configurations may be provided with a Jetty XML file, simple usages will benefit from a parameterlessCustomRequestLog
.Example in CometD 6:
The text was updated successfully, but these errors were encountered: