cmd: Warn rather than Info when retention time wraps (#5403)

Signed-off-by: Brian Brazil <brian.brazil@robustperception.io>
This commit is contained in:
Brian Brazil 2019-03-25 18:06:38 +00:00 committed by GitHub
parent 19152a45d8
commit 0a87dcd416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -292,7 +292,7 @@ func main() {
panic(err)
}
cfg.tsdb.RetentionDuration = y
level.Info(logger).Log("msg", "time retention value is too high. Limiting to: "+y.String())
level.Warn(logger).Log("msg", "time retention value is too high. Limiting to: "+y.String())
}
}