Alerting: Move spammy log line to debug in the state manager (#39410)

This commit is contained in:
gotjosh 2021-09-20 16:05:55 +01:00 committed by GitHub
parent 1e4a660ea7
commit fcbcfd232b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -205,7 +205,7 @@ func (st *Manager) recordMetrics() {
for {
select {
case <-ticker.C:
st.log.Info("recording state cache metrics", "now", time.Now())
st.log.Debug("recording state cache metrics", "now", time.Now())
st.cache.recordMetrics()
case <-st.quit:
st.log.Debug("stopping state cache metrics recording", "now", time.Now())