[ML] Downgrade missing snapshot/quantiles log msg to warn

Original commit: elastic/x-pack-elasticsearch@fb763757d1
This commit is contained in:
Dimitrios Athanasiou 2017-04-03 22:17:30 +01:00
parent 77dff92bef
commit edb8c543ed
1 changed files with 2 additions and 2 deletions

View File

@ -260,10 +260,10 @@ public class AutodetectProcessManager extends AbstractComponent {
if (autodetectParams.dataCounts().getProcessedRecordCount() > 0) { if (autodetectParams.dataCounts().getProcessedRecordCount() > 0) {
if (autodetectParams.modelSnapshot() == null) { if (autodetectParams.modelSnapshot() == null) {
logger.error("[{}] No model snapshot could be found for a job with processed records", jobId); logger.warn("[{}] No model snapshot could be found for a job with processed records", jobId);
} }
if (autodetectParams.quantiles() == null) { if (autodetectParams.quantiles() == null) {
logger.error("[{}] No quantiles could be found for a job with processed records", jobId); logger.warn("[{}] No quantiles could be found for a job with processed records", jobId);
} }
} }