YARN-4544. All the log messages about rolling monitoring interval are shown with WARN level. Contributed by Takashi Ohnishi.

(cherry picked from commit 52b77577c4)
(cherry picked from commit 3905435d3d)
This commit is contained in:
Akira Ajisaka 2016-01-08 01:12:46 +09:00
parent 092901345e
commit 852033ca62
2 changed files with 6 additions and 3 deletions

View File

@ -565,6 +565,9 @@ Release 2.8.0 - UNRELEASED
YARN-4098. Document ApplicationPriority feature. (Rohith Sharma K S via jianhe)
YARN-4544. All the log messages about rolling monitoring interval are
shown with WARN level. (Takashi Ohnishi via aajisaka)
OPTIMIZATIONS
YARN-3339. TestDockerContainerExecutor should pull a single image and not

View File

@ -189,12 +189,12 @@ public class AppLogAggregatorImpl implements AppLogAggregator {
}
} else {
if (configuredRollingMonitorInterval <= 0) {
LOG.warn("rollingMonitorInterval is set as "
LOG.info("rollingMonitorInterval is set as "
+ configuredRollingMonitorInterval + ". "
+ "The log rolling mornitoring interval is disabled. "
+ "The log rolling monitoring interval is disabled. "
+ "The logs will be aggregated after this application is finished.");
} else {
LOG.warn("rollingMonitorInterval is set as "
LOG.info("rollingMonitorInterval is set as "
+ configuredRollingMonitorInterval + ". "
+ "The logs will be aggregated every "
+ configuredRollingMonitorInterval + " seconds");