*
*/
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 {