Polish ExpressionAuthorizationDecision

Issue gh-11493
This commit is contained in:
Josh Cummings 2022-11-16 13:52:55 -07:00
parent e08ed89403
commit 9d876fce82
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ public class ExpressionAuthorizationDecision extends AuthorizationDecision {
@Override @Override
public String toString() { public String toString() {
return getClass().getSimpleName() + " [" + "granted=" + isGranted() + ", expressionAttribute=" + this.expression return getClass().getSimpleName() + " [" + "granted=" + isGranted() + ", expressionAttribute="
+ ']'; + this.expression.getExpressionString() + ']';
} }
} }