I\'m trying to use slf4j + java.util.logging. I know how to set up the Java source code to do this via logger = LoggerFactory.getLogger(...) and logger.wa
I've dropped Java logging on the same purpose and went for logback. There is nothing to do to configure logback with SLF4J actually. Just put logback.xml to the root of the jar with logback configuration and put logback-XX.jar on classpath.
%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
This is a config for logging to console, but logback manual has more examples.