Changes batch update failure to a WARN since it's nbd.

This commit is contained in:
James Phillips 2015-10-29 09:26:24 -07:00
parent 7579505a4e
commit c1d338550f
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ func (c *Coordinate) batchUpdate() {
select {
case <-time.After(c.srv.config.CoordinateUpdatePeriod):
if err := c.batchApplyUpdates(); err != nil {
c.srv.logger.Printf("[ERR] consul.coordinate: Batch update failed: %v", err)
c.srv.logger.Printf("[WARN] consul.coordinate: Batch update failed: %v", err)
}
case <-c.srv.shutdownCh:
return