Content deleted Content added
No edit summary Tag: possible vandalism |
ClueBot NG (talk | contribs) m Reverting possible vandalism by 118.102.194.59 to version by 217.169.117.37. False positive? Report it. Thanks, ClueBot NG. (1854058) (Bot) |
||
Line 4:
}}
A '''Java logging framework''' is a [[computer data logging]] package for the [[Java platform]].
Logging refers to the recording of activity. Logging is a common issue for development teams. Several frameworks ease and standardize the process of logging for the Java platform. This article covers general purpose logging frameworks.
Line 14:
===Logger===
A Logger is an object that allows the application to log without regard to where the output is sent/stored. The application logs a message by passing an object or an object and an [[Exception handling|exception]] with an optional severity level to the logger object under a given a name/identifier.
====Name====
A logger has a name. The name is usually structured hierarchically, with periods (.) separating the levels. A common scheme is to use the name of the class or package that is doing the logging. Both [[log4j]] and the Java logging [[API]] support defining Handlers higher up the hierarchy.
|