Removed stack trace code for few exceptions

This commit is contained in:
rajesh
2025-02-14 13:19:45 +05:30
parent 694e7855c0
commit 243b13d7eb
2 changed files with 7 additions and 7 deletions

View File

@@ -61,7 +61,7 @@ public class UserActionAspect {
handleSuccessResponse((ResponseEntity<?>) result, storedUserActionId == null ? userActionId : storedUserActionId);
}
} catch (Exception ex) {
log.error("Exception occurred: ", ex);
// log.error("Exception occurred: ", ex);
handleError(ex, getUserActionIdFromRequest(request));
throw ex;
} finally {