From 82ddae2ba94efa7bf0ab717705ef9f181a75a21f Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Wed, 6 Jun 2018 21:36:30 -0700 Subject: [PATCH] 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 --- namesys/republisher/repub.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/namesys/republisher/repub.go b/namesys/republisher/repub.go index aa1f85647..3e731fbf9 100644 --- a/namesys/republisher/repub.go +++ b/namesys/republisher/repub.go @@ -72,7 +72,7 @@ func (rp *Republisher) Run(proc goprocess.Process) { timer.Reset(rp.Interval) err := rp.republishEntries(proc) if err != nil { - log.Error("Republisher failed to republish: ", err) + log.Info("republisher failed to republish: ", err) if FailureRetryInterval < rp.Interval { timer.Reset(FailureRetryInterval) }