I\'ve got a maven & spring app that I want logging in. I\'m keen to use SLF4J.
I want to put all my config files into a directory {classpath}/config including lo
You'll find an example at https://github.com/mbogoevici/spring-samples/tree/master/mvc-basic/trunk. You need to include some dependencies in your POM file to enable logging.
org.slf4j
slf4j-api
${org.slf4j.version}
org.slf4j
jcl-over-slf4j
${org.slf4j.version}
runtime
org.slf4j
slf4j-log4j12
${org.slf4j.version}
runtime
log4j
log4j
1.2.16
runtime