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
This commit is contained in:
kwhite17 2017-03-18 00:36:54 +00:00 committed by Audrius Butkevicius
parent 88dfd634e5
commit 1caa683ec1
1 changed files with 3 additions and 1 deletions

View File

@ -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,