I want use logs in my program, and I heard about java.util.logging, but I dont know how to begin.
Can show me examples what can I do with the logging?
|
I want use logs in my program, and I heard about java.util.logging, but I dont know how to begin. Can show me examples what can I do with the logging?
| |||||
feedback
|
|
I would suggest to use Apache's commons logging utility. It is highly salable and supports separate log files for different logger. See here. Thanks. | |||
|
feedback
|
|
SLF4J is a cleaner Logging API than Apache Commons Logging. The nasty design "feature" of ACL is that it looks up for logging implementation at runtime with a classpath discovery algorithm. If several implementations exist, it may not be clear which one will be used, and finding out where the log files are may be very painful - if they were created at all. With SLF4J, exactly 1 implementation must exist, otherwise an exception gets thrown at initialization-time. SLF4J is an API which supports implementations such as java.util.logging. A better one would be Logback, the successor of Log4J: | ||||
|
feedback
|
|
There are many examples and also of different types for logging. So here is a link that can help you. Click Here A simple logging code
| |||
|
feedback
|
|
I'd use minlog, personally. It's extremely simple, as the logging file is a few hundred lines of code. | |||
|
feedback
|