Jetty uses slf4j , so you can use any logging framework or slf4j implementation you want.
Jetty comes with a simple slf4j implementation that records INFO levels or higher. Thus, you either modify the associated slf4j packages with the implementation with the required log levels, or use a bridge for another structure with the required log levels or provide your own log class, which you can set, for example,
System.setProperty("org.mortbay.log.class", "com.example.JettyLog");
More details here .
source share