You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2021/01/16 19:23:25 UTC

[directory-fortress-commander] branch master updated: info msg when button can't be shown

This is an automated email from the ASF dual-hosted git repository.

smckinney pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-fortress-commander.git


The following commit(s) were added to refs/heads/master by this push:
     new 86a92de  info msg when button can't be shown
86a92de is described below

commit 86a92debf83ef9836821391af9b59141d147cd4f
Author: Shawn McKinney <sm...@symas.com>
AuthorDate: Sat Jan 16 13:23:18 2021 -0600

    info msg when button can't be shown
---
 .../directory/fortress/web/control/SecureIndicatingAjaxButton.java       | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/directory/fortress/web/control/SecureIndicatingAjaxButton.java b/src/main/java/org/apache/directory/fortress/web/control/SecureIndicatingAjaxButton.java
index 511c5dc..8a0d949 100644
--- a/src/main/java/org/apache/directory/fortress/web/control/SecureIndicatingAjaxButton.java
+++ b/src/main/java/org/apache/directory/fortress/web/control/SecureIndicatingAjaxButton.java
@@ -85,6 +85,7 @@ public class SecureIndicatingAjaxButton extends IndicatingAjaxButton
         super( id );
         if ( !SecUtils.isFound( new Permission( objName, opName ), this ) )
             setVisible( false );
+            LOG.info( "arbac perm objName: " + this.perm.getObjName() + " opName: " + this.perm.getOpName() + ", not found in session");
     }
 
     protected boolean checkAccess( String objectName, String opName )