fix(BRIDGE-210): reduced log level of cache events so they won't be printed to stdout

This commit is contained in:
Atanas Janeshliev
2024-09-24 13:58:26 +02:00
parent ff7e45f395
commit ebe54ca92e
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ func (s *Store) readCache() {
file, err := os.Open(s.cacheFilepath)
if err != nil {
s.log.WithError(err).Error("Unable to open cache file")
s.log.WithError(err).Info("Unable to open cache file")
return
}