Merge pull request #1793 from dchen1107/cleanup

Make watching error logging message less severe since it is expected.
pull/6/head
Daniel Smith 2014-10-14 16:55:15 -07:00
commit 0f91a66fe0
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ func (s *SourceEtcd) run() {
return
}
if event.Type == watch.Error {
glog.Errorf("Watch error: %v", event.Object)
glog.Infof("Watch closed (%#v). Reopening.", event.Object)
watching.Stop()
return
}