diff --git a/internal/services/notifications/store.go b/internal/services/notifications/store.go index cf53cfa8..42080313 100644 --- a/internal/services/notifications/store.go +++ b/internal/services/notifications/store.go @@ -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 } diff --git a/internal/unleash/service.go b/internal/unleash/service.go index 6d76ac45..174cd639 100644 --- a/internal/unleash/service.go +++ b/internal/unleash/service.go @@ -111,7 +111,7 @@ func (s *Service) readCacheFile() { 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 }