HADOOP-6763. Remove verbose logging from the Groups class
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@944009 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
44ebf5db23
commit
21476f0b09
@ -9,6 +9,8 @@ Trunk (unreleased changes)
|
|||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
||||||
|
HADOOP-6764. Remove verbose logging from the Groups class. (Boris Shkolnik)
|
||||||
|
|
||||||
HADOOP-6730. Bug in FileContext#copy and provide base class for FileContext
|
HADOOP-6730. Bug in FileContext#copy and provide base class for FileContext
|
||||||
tests. (Ravi Phulari via jghoman)
|
tests. (Ravi Phulari via jghoman)
|
||||||
|
|
||||||
|
@ -57,7 +57,8 @@ public class Groups {
|
|||||||
cacheTimeout =
|
cacheTimeout =
|
||||||
conf.getLong(CommonConfigurationKeys.HADOOP_SECURITY_GROUPS_CACHE_SECS, 5*60) * 1000;
|
conf.getLong(CommonConfigurationKeys.HADOOP_SECURITY_GROUPS_CACHE_SECS, 5*60) * 1000;
|
||||||
|
|
||||||
LOG.info("Group mapping impl=" + impl.getClass().getName() +
|
if(LOG.isDebugEnabled())
|
||||||
|
LOG.debug("Group mapping impl=" + impl.getClass().getName() +
|
||||||
"; cacheTimeout=" + cacheTimeout);
|
"; cacheTimeout=" + cacheTimeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user