chunked: downgrade loading cache file msg to info
it can happen for any reason, like for example using a new cache file format, in this case the file is recreated with the last version. This is internal only and should not be displayed by default. Closes: https://github.com/containers/storage/issues/1905 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
8b0c90dd5c
commit
e63e3002e1
|
|
@ -268,7 +268,7 @@ func (c *layersCache) load() error {
|
|||
// try to read the existing cache file.
|
||||
l, err := c.loadLayerCache(r.ID)
|
||||
if err != nil {
|
||||
logrus.Warningf("Error loading cache file for layer %q: %v", r.ID, err)
|
||||
logrus.Infof("Error loading cache file for layer %q: %v", r.ID, err)
|
||||
}
|
||||
if l != nil {
|
||||
newLayers = append(newLayers, l)
|
||||
|
|
|
|||
Loading…
Reference in New Issue