downgrade dropped message logging to Infof

This commit is contained in:
vyzo 2018-03-06 12:11:06 +02:00
parent d5d886d853
commit 1538e0d417
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ func (p *PubSub) notifySubs(msg *pb.Message) {
select {
case f.ch <- &Message{msg}:
default:
log.Errorf("Can't deliver message to subscription for topic %s; subscriber too slow", topic)
log.Infof("Can't deliver message to subscription for topic %s; subscriber too slow", topic)
}
}
}