We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dea9e53 + 5550560 commit aa8a0dfCopy full SHA for aa8a0df
layer-api/src/main/java/org/layer/aop/ExecutionLoggingAop.java
@@ -61,13 +61,7 @@ public Object logExecutionTrace(ProceedingJoinPoint pjp) throws Throwable {
61
Object result = null;
62
63
// 해당 클래스의 메소드 실행
64
- try{
65
- result = pjp.proceed();
66
- }
67
- catch (Exception e){
68
- log.warn("[ERROR] " + task + " 메서드 예외 발생 : " + e.getMessage());
69
- throw e;
70
+ result = pjp.proceed();
71
72
// 해당 클래스 처리 후의 시간
73
sw.stop();
0 commit comments