mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-26 05:06:34 +10:00
[강운덕] [LUCYSUS-1744] api 정리, 자체 logger에 beforeInterceptor와 afterInterceptor를 만듬.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1496 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -17,6 +17,16 @@ public class Slf4jLoggerAdapter implements Logger {
|
||||
return logger.getName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void beforeInterceptor(Object target, String className, String methodName, String parameterDescription, Object[] args) {
|
||||
LoggingUtils.logBefore(this, target, className, methodName, parameterDescription, args);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void afterInterceptor(Object target, String className, String methodName, String parameterDescription, Object[] args, Object result) {
|
||||
LoggingUtils.logAfter(this, target, className, methodName, parameterDescription, args, result);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isTraceEnabled() {
|
||||
return logger.isTraceEnabled();
|
||||
|
||||
Reference in New Issue
Block a user