[ML] Downgrade missing snapshot/quantiles log msg to warn
Original commit: elastic/x-pack-elasticsearch@fb763757d1
This commit is contained in:
parent
77dff92bef
commit
edb8c543ed
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue