Merge branch '5.1.x'
This commit is contained in:
commit
e5a595e77d
|
|
@ -124,6 +124,7 @@ public abstract class AbstractTraceInterceptor implements MethodInterceptor, Ser
|
||||||
* @see #invokeUnderTrace(org.aopalliance.intercept.MethodInvocation, org.apache.commons.logging.Log)
|
* @see #invokeUnderTrace(org.aopalliance.intercept.MethodInvocation, org.apache.commons.logging.Log)
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@Nullable
|
||||||
public Object invoke(MethodInvocation invocation) throws Throwable {
|
public Object invoke(MethodInvocation invocation) throws Throwable {
|
||||||
Log logger = getLoggerForInvocation(invocation);
|
Log logger = getLoggerForInvocation(invocation);
|
||||||
if (isInterceptorEnabled(invocation, logger)) {
|
if (isInterceptorEnabled(invocation, logger)) {
|
||||||
|
|
@ -242,6 +243,7 @@ public abstract class AbstractTraceInterceptor implements MethodInterceptor, Ser
|
||||||
* @see #writeToLog(Log, String)
|
* @see #writeToLog(Log, String)
|
||||||
* @see #writeToLog(Log, String, Throwable)
|
* @see #writeToLog(Log, String, Throwable)
|
||||||
*/
|
*/
|
||||||
|
@Nullable
|
||||||
protected abstract Object invokeUnderTrace(MethodInvocation invocation, Log logger) throws Throwable;
|
protected abstract Object invokeUnderTrace(MethodInvocation invocation, Log logger) throws Throwable;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue