Sorry, with 2.4.1 I cannot figure out server-side logging, I had it working
in 1.9.
I use the following logging setup during initialization:
// Optionally remove existing handlers attached to j.u.l root logger
SLF4JBridgeHandler.removeHandlersForRootLogger(); // (since SLF4J
1.6.5)
// add SLF4JBridgeHandler to j.u.l's root logger, should be done
once during
// the initialization phase of your application
SLF4JBridgeHandler.install();
Then I put this into my logback.xml file:
<logger name="org.glassfish.jersey" level="DEBUG" />
I'm looking for things like resources being loaded, etc. but I'm seeing
nothing. How should I be doing this?
Thanks!