Sync: Reduce repeated error log level

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer 2020-04-22 18:20:42 +02:00
parent 466909908e
commit 03c7d969f6

View file

@ -94,7 +94,7 @@ func (s *Sync) download(a entity.Account) (complete bool, err error) {
}
if file.Errors > a.RetryLimit {
log.Warnf("sync: downloading %s failed more than %d times", file.RemoteName, a.RetryLimit)
log.Debugf("sync: downloading %s failed more than %d times", file.RemoteName, a.RetryLimit)
continue
}