From 63ebe4ca8d713038858b76b922b8412743437545 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 2 Jul 2020 14:52:12 +0100 Subject: [PATCH] vfs: Reduce logging of metadata expiry to debug --- vfs/vfscache/item.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vfs/vfscache/item.go b/vfs/vfscache/item.go index 9555a27ba..796719eec 100644 --- a/vfs/vfscache/item.go +++ b/vfs/vfscache/item.go @@ -736,7 +736,7 @@ func (item *Item) _removeMeta(reason string) { fs.Errorf(item.name, "vfs cache: failed to remove metadata from cache as %s: %v", reason, err) } } else { - fs.Infof(item.name, "vfs cache: removed metadata from cache as %s", reason) + fs.Debugf(item.name, "vfs cache: removed metadata from cache as %s", reason) } }