forked from Silverfish/proton-bridge
fix(BRIDGE-210): reduced log level of cache events so they won't be printed to stdout
This commit is contained in:
@ -109,7 +109,7 @@ func (s *Store) readCache() {
|
|||||||
|
|
||||||
file, err := os.Open(s.cacheFilepath)
|
file, err := os.Open(s.cacheFilepath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
s.log.WithError(err).Error("Unable to open cache file")
|
s.log.WithError(err).Info("Unable to open cache file")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -111,7 +111,7 @@ func (s *Service) readCacheFile() {
|
|||||||
|
|
||||||
file, err := os.Open(s.cacheFilepath)
|
file, err := os.Open(s.cacheFilepath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
s.log.WithError(err).Error("Unable to open cache file")
|
s.log.WithError(err).Info("Unable to open cache file")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user