/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package newpack;

import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;

/**
 *
 * @author dhaval
 */
public class Test1 {

    private Logger logger = LogManager.getLogger("mes.hpl.logger");
    public void hello(){
        logger.info("hello, logging");
    }
}
