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?

link|improve this question

2  
You can start here: slf4j.org/manual.html – Jeremy Heiler May 10 '11 at 13:14
feedback

4 Answers

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.

link|improve this answer
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.

http://www.slf4j.org/

SLF4J is an API which supports implementations such as java.util.logging. A better one would be Logback, the successor of Log4J:

http://logback.qos.ch/manual/introduction.html

link|improve this answer
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

import java.util.logging.Logger;

    public class Main {

      private static Logger logger = Logger.getLogger("InfoLogging");

      public static void main(String[] args) {
        logger.info("Logging an INFO-level message");
      }
    }
link|improve this answer
feedback

I'd use minlog, personally. It's extremely simple, as the logging file is a few hundred lines of code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.