I’m trying to set the logging level to DEBUG in an embedded Jetty instance.
The documentation at http://docs.codehaus.org/display/JETTY/Debugging says to –
call SystemProperty.set(“DEBUG”, “true”) before calling new
org.mortbay.jetty.Server().
I’m not sure what the SystemProperty class is, it doesn’t seem to be documented anywhere. I tried System.setProperty(), but that didn’t do the trick.
My question was answered on the Jetty mailing list by Joakim Erdfelt: