Skip to content

Commit

Permalink
[fix] 로깅 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
boo105 committed Feb 11, 2024
1 parent c1b1d0e commit ebd448d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/gdsc/jmt/global/logs/LoggingAspect.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public Object printLog(ProceedingJoinPoint joinPoint) throws Throwable {
}
catch (Exception e) {
logger.error("error trace : ", e);
return e;
throw e;
}
finally {
try {
Expand Down

0 comments on commit ebd448d

Please sign in to comment.