From 8818c4785bed078493e9c9d5c5efbba5582ef1c7 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Thu, 16 Oct 2014 12:23:33 +0200 Subject: [PATCH] Fix debug and fmt poopoo --- internal/model/model.go | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/internal/model/model.go b/internal/model/model.go index d8b4fe779..527f0a55b 100644 --- a/internal/model/model.go +++ b/internal/model/model.go @@ -439,8 +439,8 @@ func (m *Model) Index(deviceID protocol.DeviceID, folder string, fs []protocol.F for i := 0; i < len(fs); { lamport.Default.Tick(fs[i].Version) if ignores != nil && ignores.Match(fs[i].Name) { - if debug{ - l.Debugln("dropping update for ignored",fs[i]) + if debug { + l.Debugln("dropping update for ignored", fs[i]) } fs[i] = fs[len(fs)-1] fs = fs[:len(fs)-1] @@ -483,7 +483,9 @@ func (m *Model) IndexUpdate(deviceID protocol.DeviceID, folder string, fs []prot for i := 0; i < len(fs); { lamport.Default.Tick(fs[i].Version) if ignores != nil && ignores.Match(fs[i].Name) { - l.Debugln("dropping update for ignored",fs[i]) + if debug { + l.Debugln("dropping update for ignored", fs[i]) + } fs[i] = fs[len(fs)-1] fs = fs[:len(fs)-1] } else { @@ -882,7 +884,9 @@ func sendIndexTo(initial bool, minLocalVer uint64, conn protocol.Connection, fol } if ignores != nil && ignores.Match(f.Name) { - l.Debugln("not sending update for ignored",f) + if debug { + l.Debugln("not sending update for ignored", f) + } return true } @@ -1084,7 +1088,7 @@ func (m *Model) ScanFolderSub(folder, sub string) error { if ignores != nil && ignores.Match(f.Name) { // File has been ignored. Set invalid bit. - l.Debugln("setting invalid bit on ignored",f) + l.Debugln("setting invalid bit on ignored", f) nf := protocol.FileInfo{ Name: f.Name, Flags: f.Flags | protocol.FlagInvalid,