I'm using SLF4J + LogBack to handle my logging, and have the appropriate jars to route the other logging framework calls. However I've run across the issue noted here: http://www.slf4j.org/legacy.html#log4j-over-slf4j
Where in I'm getting a NoSuchMethodError on the call of an Appender (specifically Category.getRoot()).
It mentions that using a log4j.properties or log4j.xml file should fix these issues, but I'm not exactly sure what that config file would look like (which appenders and categories to use), or where to place it (same location as the logback.xml?)
I've also seen this: Issues replacing Log4j with LogBack, log4j-over-slf4j.jar shortcomings
Which seems to be essentially the same question, but never really answered.