Merge pull request #5091 from ipfs/fix/5029

reduce log level when we can't republish
This commit is contained in:
Whyrusleeping 2018-06-13 15:36:45 +08:00 committed by GitHub
commit dbaeb84499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
}