fix logging

This commit is contained in:
Niko Storni 2020-11-04 17:22:27 +01:00
parent 5b5f7e1c68
commit f7e4366a67

View file

@ -844,7 +844,7 @@ func (s *Sync) startWorker(workerNum int) {
log.Println("Retrying")
continue
}
logUtils.SendErrorToSlack("Video %s failed after %d retries, skipping. Stack: %s", tryCount, v.ID(), errors.FullTrace(err))
logUtils.SendErrorToSlack("Video %s failed after %d retries, skipping. Stack: %s", v.ID(), tryCount, errors.FullTrace(err))
s.syncedVideosMux.RLock()
existingClaim, ok := s.syncedVideos[v.ID()]