Index: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/NMAuditLogger.java =================================================================== --- hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/NMAuditLogger.java (revision 1610627) +++ hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/NMAuditLogger.java (working copy) @@ -85,8 +85,8 @@ */ public static void logSuccess(String user, String operation, String target, ApplicationId appId, ContainerId containerId) { - if (LOG.isInfoEnabled()) { - LOG.info(createSuccessLog(user, operation, target, appId, containerId)); + if (LOG.isDebugEnabled()) { + LOG.debug(createSuccessLog(user, operation, target, appId, containerId)); } } @@ -102,8 +102,8 @@ * and hence the value fields should not contains tabs ('\t'). */ public static void logSuccess(String user, String operation, String target) { - if (LOG.isInfoEnabled()) { - LOG.info(createSuccessLog(user, operation, target, null, null)); + if (LOG.isDebugEnabled()) { + LOG.debug(createSuccessLog(user, operation, target, null, null)); } }