Package es.internna.annotations

Examples of es.internna.annotations.LogDebug


    }
   
    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

TOP

Related Classes of es.internna.annotations.LogDebug

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.