Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Google uses java.util.logging, also referred to as JDK 1.4 logging. Apache Wink uses slf4j. In order to enable Wink's logging, replace slf4j-simple-<version>.jar with slf4j-jdk14-<version>.jar.

In order to view all Wink's messages place the following property in the logging.properties file:

Code Block
org.apache.wink.level=ALL

When running with Spring, place also make sure that you have jcl-over-slf4j-<version>.jar in the classpath.

Refer to Logging for more details.

...