Java logging framework: Difference between revisions

Content deleted Content added
No edit summary
Line 17:
* The framework then hands the formatted message to the appropriate Appender/Handler for disposition. This might include output to a console display, writing to disk, appending to a database, or generating an email.
 
Simpler logging frameworks, like [http://www.theobjectguy.com/javalog|Java Logging Framework by the Object Guy], combine the logger and the appender. This simplifies default operation, but it is less configurable, especially if the project is moved across environments.
 
===Logger===