Skip to content

Commit

Permalink
Merge pull request #930 from terrestris/log-level-basepermission-eval…
Browse files Browse the repository at this point in the history
…uator

fix(log): decrease log level in base permission evaluator
  • Loading branch information
ahennr authored Oct 9, 2024
2 parents 9a0b7e7 + 3716046 commit a1e6a9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public boolean hasPermission(Authentication authentication, Object targetDomainO
BaseEntityPermissionEvaluator entityPermissionEvaluator =
this.getPermissionEvaluatorForClass(persistentObject.getClass().getCanonicalName());

log.warn("Checking permissions with permission evaluator '{}'",
log.debug("Checking permissions with permission evaluator '{}'",
entityPermissionEvaluator.getClass().getSimpleName());

return entityPermissionEvaluator.hasPermission(user, persistentObject, permission);
Expand Down

0 comments on commit a1e6a9f

Please sign in to comment.