Package org.gatein.common.logging

Examples of org.gatein.common.logging.Logger


        if(this.script == null) {
            try {
                GroovyScriptBuilder compiler = new GroovyScriptBuilder(templateId, templateName, templateText);
                this.script = compiler.build();
            } catch (TemplateCompilationException ex) {
                Logger log = LoggerFactory.getLogger(GroovyTemplate.class);
                log.error(ex.getMessage(), ex);
            }
        }
        return this.script;
    }
View Full Code Here


        if(this.script == null) {
            try {
                GroovyScriptBuilder compiler = new GroovyScriptBuilder(templateId, templateName, templateText);
                this.script = compiler.build();
            } catch (TemplateCompilationException ex) {
                Logger log = LoggerFactory.getLogger(GroovyTemplate.class);
                log.error(ex.getMessage(), ex);
            }
        }

        return this.script;
    }
View Full Code Here

TOP

Related Classes of org.gatein.common.logging.Logger

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.