Provides some formatters for the standard java logging package.
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.
ConsoleFormatter
will
look like:>This is my first message. >And this my second one.{ - Exception}
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}
None at the moment.
For overviews, tutorials, examples, guides, and tool documentation, please see:
@since 1.4.1_02