Merge pull request #1906 from giuseppe/downgrade-message-to-info

chunked: downgrade loading cache file msg to info
This commit is contained in:
openshift-merge-bot[bot] 2024-04-23 20:20:24 +00:00 committed by GitHub
commit 408479eae9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)