Puller: fix wrong filesystem log field usage

was introduced in 9465b593
This commit is contained in:
Christian Schwarz 2017-12-29 21:25:42 +01:00
parent c403e56835
commit be7176bee7

View File

@ -83,8 +83,8 @@ func (p *Puller) replFilesystem(m remoteLocalMapping, localFilesystemState map[s
remote := p.Remote
log := p.task.Log().
WithField(logMapToField, m.Remote.ToString()).
WithField(logMapFromField, m.Local.ToString())
WithField(logMapFromField, m.Remote.ToString()).
WithField(logMapToField, m.Local.ToString())
log.Debug("examining local filesystem state")
localState, localExists := localFilesystemState[m.Local.ToString()]