Change no metric error message to debug level (#6630)

This commit is contained in:
Nick Neisen 2019-11-06 18:32:56 -07:00 committed by Daniel Nelson
parent e4170339b1
commit 8d52f5a4b2
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ func (ac *accumulator) AddError(err error) {
return
}
NErrors.Incr(1)
log.Printf("E! [%s] Error in plugin: %v", ac.maker.LogName(), err)
log.Printf("D! [%s] Error in plugin: %v", ac.maker.LogName(), err)
}
func (ac *accumulator) SetPrecision(precision time.Duration) {