views:

726

answers:

3
+3  Q: 

Logback tutorial

Where can I find a Logback tutorial and/or sample projects? Something similar with this "Log4j Tutorial" would be nice.

Note: I am aware of the documentation available on the official Logback website

The Logback Manual

Logback documentation

but is there anything else available?

A: 

Logback works a lot like log4j. So you usually only have to replace a class name or so to make the old examples work.

But yes, a tutorial, which explains more than how to create a logger, would be nice :)

Aaron Digulla
I do not want to re-use Log4J examples - the aim is to make use of the new Logback features. Otherwise, what is the point?
Adrian
+2  A: 

Hello,

You might take a look at the logback demo, here.

It will walk you through some of the main logback features.

Hope this helps...

Séb
+3  A: 

To me, the java sources from the logback-examples of the manual are perfect for this purpose. Not sure you can find better stuff than the genuine samples from the author.

Pascal Thivent