Set memory usage log message to trace (elastic/elasticsearch#829)

Original commit: elastic/x-pack-elasticsearch@13412cc4cf
This commit is contained in:
David Kyle 2017-01-31 09:54:56 +00:00 committed by GitHub
parent ab957b6d91
commit c84f227857
1 changed files with 1 additions and 1 deletions

View File

@ -1069,7 +1069,7 @@ public class JobProvider {
get(jobId, indexName, Result.TYPE.getPreferredName(), ModelSizeStats.documentId(jobId),
handler, errorHandler, (parser, context) -> ModelSizeStats.PARSER.apply(parser, null).build(),
() -> {
LOGGER.warn("No memory usage details for job with id {}", jobId);
LOGGER.trace("No memory usage details for job with id {}", jobId);
return null;
});
}