mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 07:11:08 +00:00
lib/model: use WARN for "Unexpected folder" messages (#8998)
This commit is contained in:
parent
d70eb569f2
commit
6b6b2c6194
@ -1129,7 +1129,7 @@ func (m *model) handleIndex(deviceID protocol.DeviceID, folder string, fs []prot
|
|||||||
l.Debugf("%v (in): %s / %q: %d files", op, deviceID, folder, len(fs))
|
l.Debugf("%v (in): %s / %q: %d files", op, deviceID, folder, len(fs))
|
||||||
|
|
||||||
if cfg, ok := m.cfg.Folder(folder); !ok || !cfg.SharedWith(deviceID) {
|
if cfg, ok := m.cfg.Folder(folder); !ok || !cfg.SharedWith(deviceID) {
|
||||||
l.Infof("%v for unexpected folder ID %q sent from device %q; ensure that the folder exists and that this device is selected under \"Share With\" in the folder configuration.", op, folder, deviceID)
|
l.Warnf("%v for unexpected folder ID %q sent from device %q; ensure that the folder exists and that this device is selected under \"Share With\" in the folder configuration.", op, folder, deviceID)
|
||||||
return fmt.Errorf("%s: %w", folder, ErrFolderMissing)
|
return fmt.Errorf("%s: %w", folder, ErrFolderMissing)
|
||||||
} else if cfg.Paused {
|
} else if cfg.Paused {
|
||||||
l.Debugf("%v for paused folder (ID %q) sent from device %q.", op, folder, deviceID)
|
l.Debugf("%v for paused folder (ID %q) sent from device %q.", op, folder, deviceID)
|
||||||
|
Loading…
Reference in New Issue
Block a user