Package es.uma.crudframework.trazas.annotations

Examples of es.uma.crudframework.trazas.annotations.LogDebug.loggerClass()


    protected Logger getLog(JoinPoint jp) {
        Logger logger = null;
        try {
            final LogDebug logdebug = this.getMethod(jp).getAnnotation(
                    LogDebug.class);
            Class clazz = logdebug.loggerClass();
            if (clazz == null) {
                clazz = LogDebugInterceptor.class;
            }
            logger = LoggerFactory.getLogger(clazz);
        } finally {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.