1
mirror of https://github.com/rclone/rclone synced 2024-11-10 08:08:35 +01:00

vfs: downgrade "poll-interval is not supported" message to Info

...to save confusion as it isn't very important
This commit is contained in:
Nick Craig-Wood 2018-02-09 07:57:50 +00:00
parent 9a653fea10
commit 04a0a7406b

View File

@ -220,7 +220,7 @@ func New(f fs.Fs, opt *Options) *VFS {
if do := vfs.f.Features().DirChangeNotify; do != nil {
do(vfs.root.ForgetPath, vfs.Opt.PollInterval)
} else {
fs.Logf(f, "poll-interval is not supported by this remote")
fs.Infof(f, "poll-interval is not supported by this remote")
}
}