users@jersey.java.net

[Jersey] Jersey Server Side Logging

From: Robert DiFalco <robert.difalco_at_gmail.com>
Date: Sat, 14 Dec 2013 10:24:56 -0800

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!