Java - (Debugging) Logger, Logging system
About
Log - Logging in Java.
Articles Related
Configuration
A configuration provide specifications for:
- Logger objects - A Logger is the entry point to logs messages.
- Appenders (or Handlers) define where to write the message (console stdout, stderr, file, port, socket)
- Log message format (enriching the message with additional metadata)
Configuration:
- code
- file (xml, properties)
Logging system
- JavaTM Logging APIs (or JUL), introduced with java 1.4.2
- Java - Slf4j - a logger facade
- Jakarta Common Logging Component