[ML] Further reduce log file noise (elastic/x-pack-elasticsearch#1126)

Original commit: elastic/x-pack-elasticsearch@65301281d2
This commit is contained in:
David Roberts 2017-04-19 15:19:15 +01:00 committed by GitHub
parent 8e7fd1421c
commit 4255f6dae6
2 changed files with 1 additions and 2 deletions

View File

@ -103,7 +103,6 @@ public class AutoDetectResultProcessor {
} }
context.bulkResultsPersister.executeRequest(); context.bulkResultsPersister.executeRequest();
LOGGER.info("[{}] {} buckets parsed from autodetect output", jobId, bucketCount); LOGGER.info("[{}] {} buckets parsed from autodetect output", jobId, bucketCount);
LOGGER.info("[{}] Parse results Complete", jobId);
} catch (Exception e) { } catch (Exception e) {
LOGGER.error(new ParameterizedMessage("[{}] error parsing autodetect output", new Object[] {jobId}), e); LOGGER.error(new ParameterizedMessage("[{}] error parsing autodetect output", new Object[] {jobId}), e);
} finally { } finally {

View File

@ -87,7 +87,7 @@ public class ScoresUpdater {
perPartitionNormalization); perPartitionNormalization);
updateInfluencers(normalizer, quantilesState, endBucketEpochMs, windowExtensionMs, counts); updateInfluencers(normalizer, quantilesState, endBucketEpochMs, windowExtensionMs, counts);
LOGGER.info("[{}] Normalization resulted in: {} updates, {} no-ops", job.getId(), counts[0], counts[1]); LOGGER.debug("[{}] Normalization resulted in: {} updates, {} no-ops", job.getId(), counts[0], counts[1]);
} }
private void updateBuckets(Normalizer normalizer, String quantilesState, long endBucketEpochMs, private void updateBuckets(Normalizer normalizer, String quantilesState, long endBucketEpochMs,