Repository: struts Updated Branches: refs/heads/master 0100a6beb -> 843693fdd
fix confusing debug message Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/843693fd Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/843693fd Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/843693fd Branch: refs/heads/master Commit: 843693fdd4e53347636872ab881c770e7cc3b6e0 Parents: 0100a6b Author: Aleksandr Mashchenko <[email protected]> Authored: Mon Jun 5 23:20:26 2017 +0300 Committer: Aleksandr Mashchenko <[email protected]> Committed: Mon Jun 5 23:20:26 2017 +0300 ---------------------------------------------------------------------- .../java/com/opensymphony/xwork2/ognl/SecurityMemberAccess.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/843693fd/core/src/main/java/com/opensymphony/xwork2/ognl/SecurityMemberAccess.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/com/opensymphony/xwork2/ognl/SecurityMemberAccess.java b/core/src/main/java/com/opensymphony/xwork2/ognl/SecurityMemberAccess.java index 530be65..234fb5b 100644 --- a/core/src/main/java/com/opensymphony/xwork2/ognl/SecurityMemberAccess.java +++ b/core/src/main/java/com/opensymphony/xwork2/ognl/SecurityMemberAccess.java @@ -53,7 +53,7 @@ public class SecurityMemberAccess extends DefaultMemberAccess { @Override public boolean isAccessible(Map context, Object target, Member member, String propertyName) { - LOG.debug("Checking access for [target: {}, member: {}, property: {}] is deprecated!", target, member, propertyName); + LOG.debug("Checking access for [target: {}, member: {}, property: {}]", target, member, propertyName); if (checkEnumAccess(target, member)) { LOG.trace("Allowing access to enum: {}", target);
