log4j

Page 1

Log4J Ashley J.S Mills <ug55axm@cs.bham.ac.uk>

Copyright Š 2002 The University Of Birmingham

Table of Contents 1. Introduction ................................................................................................................................................. 1 2. Installation .................................................................................................................................................. 1 3. log4j Basic Concepts ..................................................................................................................................... 1 3.1. Logger ............................................................................................................................................. 2 3.2. Appender .......................................................................................................................................... 3 3.2.1. Using A ConsoleAppender ........................................................................................................ 4 3.2.2. Using A FileAppender .............................................................................................................. 4 3.2.3. Using A WriterAppender .......................................................................................................... 4 3.3. Layout ............................................................................................................................................. 4 3.4. Basic Examples Illustrating this ............................................................................................................ 4 3.4.1. SimpleLayout and FileAppender ................................................................................................. 4 3.4.2. HTMLLayout and WriterAppender ............................................................................................. 5 3.4.3. PatternLayout and ConsoleAppender ........................................................................................... 5 4. Using External Configuration Files .................................................................................................................. 6 5. References (And links you may find useful) ....................................................................................................... 7

1. Introduction Logging within the context of program development constitutes inserting statements into the program that provide some kind of output information that is useful to the developer. Examples of logging are trace statements, dumping of structures and the familiar System.out.println or printf debug statements. log4j offers a hierarchical way to insert logging statements within a Java program. Multiple output formats and multiple levels of logging information are available. By using a dedicated logging package, the overhead of maintaining thousands of System.out.println statements is alleviated as the logging may be controlled at runtime from configuration scripts. log4j maintains the log statements in the shipped code. By formalising the process of logging, some feel that one is encouraged to use logging more and with higher degree of usefulness.

2. Installation In order to use the tools we are about to install it is necessary to setup the operating environment so that the tools know where to find stuff they need and the operating system knows where to find the tools. A understanding of how to do this is essential as you will be asked to change the operating environment. I have comprehensively covered this in documents entitled Configuring A Windows Working Environment [../winenvars/winenvarshome.html] and Configuring A Unix Working Environment [../unixenvars/unixenvarshome.html]. 1.

Download the log4j distribution from http://jakarta.apache.org/log4j/docs/download.html.

2.

Extract the archived files to some suitable directory.

3.

Add the file dist/lib/log4j-1.2.6.jar to your CLASSPATH environment variable.

4.

Download http://apache.rmplc.co.uk/dist/xml/xerces-j/Xerces-J-bin.2.6.0.zip and unzip it to a temporary directory. Copy the files xercesImpl.jar and xmlParserAPIs.jar to some permanent location and append their paths to the CLASSPATH environment variable.

3. log4j Basic Concepts The use of log4j revolves around 3 main things: 1.

public class Logger 1


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.