Thoughts on Java logging and SLF4J and what can a library like SLF4J can bring. Logging is a basic need when you create software. Logging use-cases are: debugging the software during development, help diagnose bugs during production trace access for security purposes create data for statistical use etc. Whatever the use, logs should be detailed, configurable and reliable. History System.out.println() System.out System.err . In production, both were redirected: the former on the null output, the latter to the desired error log file.
Read full article from A Java geek » Thoughts on Java logging and SLF4J
No comments:
Post a Comment