downgrade "Dropping report" log message to warning

It indicates degraded functionality, not catastrophe.
This commit is contained in:
Matthias Radestock
2017-07-25 21:29:18 +01:00
parent 935f6e6c20
commit d8c747ef20

View File

@@ -318,7 +318,7 @@ func (c *appClient) Publish(r io.Reader, shortcut bool) error {
select {
case c.readers <- r:
default:
log.Errorf("Dropping report to %s", c.hostname)
log.Warnf("Dropping report to %s", c.hostname)
if shortcut {
return nil
}