From 04a0a7406bbccd5f5f2c5b0e257001535cffde2b Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 9 Feb 2018 07:57:50 +0000 Subject: [PATCH] vfs: downgrade "poll-interval is not supported" message to Info ...to save confusion as it isn't very important --- vfs/vfs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vfs/vfs.go b/vfs/vfs.go index 7b4023463..6726a637c 100644 --- a/vfs/vfs.go +++ b/vfs/vfs.go @@ -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") } }