}
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);
}