Skip to content

Commit

Permalink
Merge pull request #5091 from ipfs/fix/5029
Browse files Browse the repository at this point in the history
reduce log level when we can't republish
  • Loading branch information
whyrusleeping authored Jun 13, 2018
2 parents c39067b + 82ddae2 commit dbaeb84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion namesys/republisher/repub.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit dbaeb84

Please sign in to comment.