mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Replaced System.out with logger.debug in DMPermissionsDaoComponentImpl.deletePermissions()
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19859 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -39,7 +39,6 @@ import org.apache.commons.logging.LogFactory;
|
|||||||
*/
|
*/
|
||||||
public class DMPermissionsDaoComponentImpl extends AbstractPermissionsDaoComponentImpl
|
public class DMPermissionsDaoComponentImpl extends AbstractPermissionsDaoComponentImpl
|
||||||
{
|
{
|
||||||
@SuppressWarnings("unused")
|
|
||||||
private static Log logger = LogFactory.getLog(DMPermissionsDaoComponentImpl.class);
|
private static Log logger = LogFactory.getLog(DMPermissionsDaoComponentImpl.class);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -107,7 +106,10 @@ public class DMPermissionsDaoComponentImpl extends AbstractPermissionsDaoCompone
|
|||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
System.out.println("Deleting "+acl+" on "+nodeRef);
|
|
||||||
|
if (logger.isDebugEnabled())
|
||||||
|
logger.debug("Deleting " + acl + " on " + nodeRef);
|
||||||
|
|
||||||
if (acl != null)
|
if (acl != null)
|
||||||
{
|
{
|
||||||
switch (acl.getAclType())
|
switch (acl.getAclType())
|
||||||
|
Reference in New Issue
Block a user