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:
Boris Shkolnik 2010-05-13 20:44:52 +00:00
parent 44ebf5db23
commit 21476f0b09
2 changed files with 5 additions and 2 deletions

View File

@ -9,6 +9,8 @@ Trunk (unreleased changes)
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
tests. (Ravi Phulari via jghoman)

View File

@ -57,8 +57,9 @@ public class Groups {
cacheTimeout =
conf.getLong(CommonConfigurationKeys.HADOOP_SECURITY_GROUPS_CACHE_SECS, 5*60) * 1000;
LOG.info("Group mapping impl=" + impl.getClass().getName() +
"; cacheTimeout=" + cacheTimeout);
if(LOG.isDebugEnabled())
LOG.debug("Group mapping impl=" + impl.getClass().getName() +
"; cacheTimeout=" + cacheTimeout);
}
/**