Errata

Log4J

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
PDF Page 9
Example 1

In the example rootlogger is written with lower case l i logger.

It seems like log4j is case sensitive for this, so it should be rootLogger, with capital L in logger.

rootLogger is with lower case l several places in the book.

Jens-Christian Skibakk  Jan 17, 2011 
PDF Page 12
top

private static final logger log = logger.getlogger(Controller.class);

should be:

private static final Logger log = Logger.getLogger(Controller.class);

No biggie for me, but if newbies are copy and pasting the code, a lot of this code won't work.

Thanks, otherwise loved the book!

juliuss  Aug 05, 2010