diff --git a/Changelog b/Changelog index cdc4927e..175c2b84 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ Unreleased: +* FIX: Change log level of S3 missing keys message (@benoit #xxxx) 1.14.0: * FIX: Remove S3 upload concurrency to avoid 'RequestTimeTooSkewed' errors (@benoi74 #2118) diff --git a/src/S3.ts b/src/S3.ts index 1c1d8002..51165dd3 100644 --- a/src/S3.ts +++ b/src/S3.ts @@ -105,7 +105,7 @@ class S3 { .catch((err: any) => { // For 404 error handle AWS service-specific exception if (err && err.name === 'NoSuchKey') { - logger.log(`The specified key '${key}' does not exist in the cache.`) + logger.info(`The specified key '${key}' does not exist in the cache.`) resolve(null) } else { logger.error(`Error (${err}) while downloading the object '${key}' from the cache.`)