1 package com.freemindcafe.apache.log4j.sample2;
3 import java.util.Properties;
6 import org.
apache.log4j.PropertyConfigurator;
9 private static final Logger logger = Logger.getLogger(
"a");
11 public static void main(String[] args)
throws Exception {
12 Properties props =
new Properties();
13 props.load(
App.class.getResourceAsStream(
"/com/freemindcafe/apache/log4j/sample2/log4j.properties"));
14 PropertyConfigurator.configure(props);
19 logger.debug(
"Hello there from App class!");