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