Browse Source

Hash mismatch in general doesn't merit a warning

Jakob Borg 11 years ago
parent
commit
86a57d8b56
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/model/puller.go

+ 1 - 1
internal/model/puller.go

@@ -694,7 +694,7 @@ func (p *Puller) finisherRoutine(in <-chan *sharedPullerState) {
 			err = scanner.Verify(fd, protocol.BlockSize, state.file.Blocks)
 			fd.Close()
 			if err != nil {
-				l.Warnln("puller: final:", state.file.Name, err)
+				l.Infoln("puller:", state.file.Name, err, "(file changed during pull?)")
 				continue
 			}