reduce log level when we can't republish
This is almost never an error, it just means we don't have any connections. We could leave this at Warning but we'd like to be able to turn those on by default at some point. fixes #5029 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
Steven Allen committed
Jun 6, 2018 at 21:36 UTC
82ddae2ba94efa7bf0ab717705ef9f181a75a21f
1 file changed
+1
-1
namesys/republisher/repub.go
+1
-1
@@ -72,7 +72,7 @@ func (rp *Republisher) Run(proc goprocess.Process) {
72
timer.Reset(rp.Interval)
73
err := rp.republishEntries(proc)
74
if err != nil {
75
- log.Error("Republisher failed to republish: ", err)
75
+ log.Info("republisher failed to republish: ", err)
76
if FailureRetryInterval < rp.Interval {
77
timer.Reset(FailureRetryInterval)
78
}