ACCU Home page ACCU Conference Page
Search Contact us ACCU at Flickr ACCU at GitHib ACCU at Facebook ACCU at Linked-in ACCU at Twitter Skip Navigation

Search in Book Reviews

The ACCU passes on review copies of computer books to its members for them to review. The result is a large, high quality collection of book reviews by programmers, for programmers. Currently there are 1949 reviews in the database and more every month.
Search is a simple string search in either book title or book author. The full text search is a search of the text of the review.
    View all alphabetically
Title:
Logging in Java with the 3DK 1.4 Logging API and Apache
Author:
Samudra Gupta
ISBN:
1-59059-099-6
Publisher:
Apress
Pages:
324pp
Price:
£32-00
Reviewer:
Silvia de Beer
Subject:
java
Appeared in:
16-6
This book describes two logging APIs. The first third of the book describes the simpler JDK 1.4 logging API, and the second part the more complex Apache log4j API, which also offers more features and flexibility. I think it is a good choice to cover both APIs in one book, because for small projects, the JDK Logging API might be sufficient. By reading this book, a developer can make a choice whether he needs the more complex Apache log4j, or whether the simple JDK logging API might do the job. The similarities and differences are well explained between the two APIs.

This book is not a reference with a complete interface of the two APIs, and it does not give a reference of the syntax of the configuration files, especially for log4j. However, I did not think that this is such a negative point of the book, because it would have added many pages that might not be very useful. If you want to find out about the details of the APIs, there is no better place than the JavaDoc and possible a few other documents online. The book is well written, and explains correctly the ideas behind the two logging APIs. A few UML class and interaction diagrams are given to explain the interaction between the various classes and interfaces that constitutes the two logging frameworks. The examples do support the text very well and I found this a very pleasant book to read. One thing is maybe not yet stressed enough in this book and that is the enormous value of good configurable logging statements in your application. It is very important that a developer learns to discern the points where a logging statement is required, to be able to correctly trace problems in the future.