diff --git a/shims/0.23/src/main/java/org/apache/hadoop/hive/shims/Hadoop23Shims.java b/shims/0.23/src/main/java/org/apache/hadoop/hive/shims/Hadoop23Shims.java index 5ddab9894f334ab8834fd2579da6dbecea398495..aa3531c8cf28d6b877630cf9a05e1b305ee5a34e 100644 --- a/shims/0.23/src/main/java/org/apache/hadoop/hive/shims/Hadoop23Shims.java +++ b/shims/0.23/src/main/java/org/apache/hadoop/hive/shims/Hadoop23Shims.java @@ -699,7 +699,8 @@ public HdfsFileStatus getFullFileStatus(Configuration conf, FileSystem fs, aclStatus = fs.getAclStatus(file); } catch (Exception e) { LOG.info("Skipping ACL inheritance: File system for path " + file + " " + - "does not support ACLs but dfs.namenode.acls.enabled is set to true: " + e, e); + "does not support ACLs but dfs.namenode.acls.enabled is set to true. "); + LOG.debug("The details are: " + e, e); } } return new Hadoop23FileStatus(fileStatus, aclStatus); @@ -735,7 +736,8 @@ public void setFullFileStatus(Configuration conf, HdfsFileStatus sourceStatus, } } catch (Exception e) { LOG.info("Skipping ACL inheritance: File system for path " + target + " " + - "does not support ACLs but dfs.namenode.acls.enabled is set to true: " + e, e); + "does not support ACLs but dfs.namenode.acls.enabled is set to true. "); + LOG.debug("The details are: " + e, e); } } else { String permission = Integer.toString(sourceStatus.getFileStatus().getPermission().toShort(), 8);