BAEL-4844: Fixing the indentation.
This commit is contained in:
parent
78faf1e871
commit
f73a249836
|
@ -4,16 +4,16 @@ import org.apache.commons.logging.Log;
|
|||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
public aspect TracingAspect {
|
||||
private static final Log LOG = LogFactory.getLog(TracingAspect.class);
|
||||
private static final Log LOG = LogFactory.getLog(TracingAspect.class);
|
||||
|
||||
pointcut traceAnnotatedClasses(): within(@Trace *) && execution(* *(..));
|
||||
pointcut traceAnnotatedClasses(): within(@Trace *) && execution(* *(..));
|
||||
|
||||
Object around() : traceAnnotatedClasses() {
|
||||
String signature = thisJoinPoint.getSignature().toShortString();
|
||||
LOG.trace("Entering " + signature);
|
||||
Object returnValue = proceed();
|
||||
LOG.trace("Exiting " + signature);
|
||||
Object around() : traceAnnotatedClasses() {
|
||||
String signature = thisJoinPoint.getSignature().toShortString();
|
||||
LOG.trace("Entering " + signature);
|
||||
Object returnValue = proceed();
|
||||
LOG.trace("Exiting " + signature);
|
||||
|
||||
return returnValue;
|
||||
}
|
||||
return returnValue;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue