commit | 7019203d3d5fb0e83b58f27e02fd3b177eb93935 | [log] [tgz] |
---|---|---|
author | Brett Johnson <Brett.Michael.Johnson@gmail.com> | Thu Aug 21 13:41:30 2014 -0700 |
committer | Brett Johnson <Brett.Michael.Johnson@gmail.com> | Thu Aug 21 13:41:30 2014 -0700 |
tree | d91d367cb5b02e4a7600ed4caff217502a0a0a17 | |
parent | 9aa177dcd7a88853e65baf511a03cf39a82782f5 [diff] |
Fix b/17116680: Change log level for unresolvable SIDs to FINEST" Code Review: http://codereview.appspot.com/133730043
diff --git a/src/com/google/enterprise/adaptor/fs/WindowsAclFileAttributeViews.java b/src/com/google/enterprise/adaptor/fs/WindowsAclFileAttributeViews.java index 66cf25e..f92c326 100644 --- a/src/com/google/enterprise/adaptor/fs/WindowsAclFileAttributeViews.java +++ b/src/com/google/enterprise/adaptor/fs/WindowsAclFileAttributeViews.java
@@ -331,7 +331,7 @@ } catch (Win32Exception e) { // Only the least significant 16-bits signifies the HR code. if ((e.getHR().intValue() & 0xFFFF) == WinError.ERROR_NONE_MAPPED) { - log.log(Level.WARNING, "Skipping ACE with unresolvable SID: {0}.", + log.log(Level.FINEST, "Skipping ACE with unresolvable SID: {0}.", ace.getSidString()); return null; } else {