Content deleted Content added
typo/grammar fixes ( WP:Typo and WP:Grammar you can help!) |
m clean up + typo fix using AWB |
||
Line 1:
==Introduction of Java Logging Frameworks==
[[data logging|Logging]] is a common issue for most development teams. There have been several frameworks developed to ease and standardize the process of logging for the [[
==Functionality Overview==
Line 6:
Simpler logging frameworks, like Java Logging Framework by the Object Guy, combine the logger and the appender together. This makes for simple initial configuration, but less configurable, especially as the project is moved across environments.
===Logger===
Most frameworks support
====Name====
A logger has a name. The name is usually hierarchical, with periods (.) separating the levels. A common naming scheme is to use the name of the class or package that is doing the loggings. Both log4j and the Java API supported defining Handlers higher up the hierarchy.
|