Removed stack trace code for few exceptions

This commit is contained in:
rajesh
2025-02-14 13:19:45 +05:30
parent 555a5d777a
commit 3de5b3f0b2
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 {