Просмотр исходного кода

lib/scanner: Stopped outputting rescan debug message if file doesn't exist locally (fixes #1350)

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4028
kwhite17 9 лет назад
Родитель
Сommit
1caa683ec1
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      lib/scanner/walk.go

+ 3 - 1
lib/scanner/walk.go

@@ -311,7 +311,9 @@ func (w *walker) walkRegular(relPath string, info os.FileInfo, fchan chan protoc
 		return nil
 	}
 
-	l.Debugln("rescan:", cf, info.ModTime().Unix(), info.Mode()&os.ModePerm)
+	if ok {
+		l.Debugln("rescan:", cf, info.ModTime().Unix(), info.Mode()&os.ModePerm)
+	}
 
 	f := protocol.FileInfo{
 		Name:          relPath,