diff --git a/thumbnails/pkg/thumbnail/storage/filesystem.go b/thumbnails/pkg/thumbnail/storage/filesystem.go index 4bf2a297a..f586e17bb 100644 --- a/thumbnails/pkg/thumbnail/storage/filesystem.go +++ b/thumbnails/pkg/thumbnail/storage/filesystem.go @@ -41,7 +41,7 @@ func (s *FileSystem) Get(username string, key string) []byte { img := filepath.Join(userDir, key) content, err := ioutil.ReadFile(img) if err != nil { - s.logger.Warn().Err(err).Msgf("could not read file %s", key) + s.logger.Debug().Str("err", err.Error()).Str("key", key).Msg("could not load thumbnail from store") return nil } return content