Julho 06
Prof(s). Eduardo Bezerra & Ismael H. F. Santos                                                2
Hello Log4j
nimport org.apache.log4j.*;
npublic class HelloLog4j
n{
nprivate static Logger logger = Logger.getLogger(HelloLog4j.class);
n  public static void main(String[] args)
n  {
nBasicConfigurator.configure();
nlogger.debug(“In the main method");
nlogger.info("What a beautiful day.");
nlogger.error(“This is an error message.”);
n  }
n}