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

package net.docfix.logging;

import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;
//import net.docfix.logging.SqlAppender;

/**
 *
 * @author msk
 */
public class Main {


    public static void main ( String args[] ) throws ClassNotFoundException {


        PropertyConfigurator.configure(Main.class.getResource("/log4j.properties"));


        Logger.getRootLogger().info ( "foooo");



    }


}

