Package neoAtlantis.utilidades.logger

Examples of neoAtlantis.utilidades.logger.ConsoleLogger


        if( props.getProperty("logger.file")!=null ){
            try{
                loger=new FileLogger(name, props.getProperty("logger.file"));
            }catch(Exception ex){
                System.out.println("No se logro generar el archivo del logger: "+ex);
                loger=new ConsoleLogger(name);
            }
        }
        if( props.getProperty("debug.active")!=null && props.getProperty("debug.active").equalsIgnoreCase("true") ){
            debug.setActive(true);
        }
View Full Code Here

TOP

Related Classes of neoAtlantis.utilidades.logger.ConsoleLogger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.