Package de.goerntkai.toolbox.log

Provides some formatters for the standard java logging package.

See:
          Description

Class Summary
ConsoleFormatter The ConsoleFormatter displays only the messages.
FileFormatter The FileFormatter displays almost any information coming from the log record.
 

Package de.goerntkai.toolbox.log Description

Provides some formatters for the standard java logging package.

Package Specification

The standard formatter prints every log entry in two following lines. This is very uncomfortable to read. This package puts legibilty on top of its aims.

This is what two messages of the ConsoleFormatter will look like:
>This is my first message.
>And this my second one.{ - Exception}
	
This is what three messages of the FileFormatter will look like:
>[0][2007-03-31 - 09:16:54.003][thread][logger][INFO][class.method()] - This is my first message.
>[1][2007-03-31 - 09:16:54.003][thread][logger][FINER][class.method(parameterlist)] - And this my second one.{ - exception}
>[2][2007-03-31 - 09:16:54.003][thread][logger][ALL][class.method(parameterlist)] - This is my third message.
>{Stacktrace}
	

Related Documentation

None at the moment.

For overviews, tutorials, examples, guides, and tool documentation, please see:

Since:
1.4.1_02


Copyright © 2004-2007 Kai Görnt. All Rights Reserved.