I'm trying to use a logger across a web application. I have added the FileHandler to write the log into file. Now, I need to use the same handler across other classes/servlets in the project, so that logs from all classes are written to same text file. How can I achieve this?

/***
 * Initialize a logger
 */
public static Logger logger;
static {
    try {
      FileHandler fh = new FileHandler("log.txt", true);
      fh.setFormatter(new SimpleFormatter());
      logger = Logger.getLogger(MyClass.class.getName());
      logger.addHandler(fh);
    }
    catch (IOException e) {
      e.printStackTrace();
    }
}

Do I need to initialize the logger and add handler in every class as in above code? Any other techniques?

link|improve this question

What kind of data do you want to log? Exceptions or some debug information or smth else? – Donz Apr 19 '11 at 6:36
Hi, Mostly I want to log debug info. – Ajay Apr 19 '11 at 6:42
feedback

2 Answers

up vote 2 down vote accepted

I'd consider using a logging framework such as Log4J.

Using it would just boil down to configuring the appenders (e.g. FileAppender) and log levels in a central file (.xml or .properties) and in each class that needs to define a logger you'd just do Log l = LogFactory.getLog(clazz); (where clazz is the class you define the logger for).

You could make the logger public static and use it from other classes as well but I'd not recommend it, since you normally want to know which logger (i.e. which class that logger was defined for) generated a log entry.

link|improve this answer
feedback

You could use the logging.properties file to define your handlers globally for the whole application. In this file you can fine-tune your logging needs.

Look here or just google for logging.properties.

Example from the link above:

handlers = java.util.logging.ConsoleHandler, java.util.logging.FileHandler

java.util.logging.ConsoleHandler.level = INFO
java.util.logging.FileHandler.level = ALL

java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter

You can even setup different logging behavior for each of you web applications by placing the logging.properties in WEB-INF/classes of your web app.

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.