From eb7d122723e26f84b5aba6e15350635036c2886f Mon Sep 17 00:00:00 2001 From: Geoffrey Wossum Date: Fri, 8 Nov 2024 14:12:58 -0600 Subject: [PATCH] chore: change from info to warn when invalid shard IDs found in path --- tsdb/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/store.go b/tsdb/store.go index 31bd94172f8..ca7bf999a00 100644 --- a/tsdb/store.go +++ b/tsdb/store.go @@ -2549,7 +2549,7 @@ func (s *Store) findShards(log *zap.Logger) ([]shardInfo, error) { // Shard file names are numeric shardIDs shardID, err := strconv.ParseUint(sh.Name(), 10, 64) if err != nil { - log.Info("invalid shard ID found at path", zap.String("path", fullPath)) + log.Warn("invalid shard ID found at path", zap.String("path", fullPath)) continue }