Examples of loggerClass()


Examples of es.internna.annotations.LogDebug.loggerClass()

   
    protected Log getLog(JoinPoint jp) {
        Log log = null;
        try {
            LogDebug logdebug = this.getMethod(jp).getAnnotation(LogDebug.class);
            Class clazz = logdebug.loggerClass();
            if (clazz == null) clazz = LogDebugInterceptor.class;
            log = LogFactory.getLog(clazz);
        } finally {
            if (log == null) log = LogFactory.getLog(LogDebugInterceptor.class);
        }
View Full Code Here

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.