mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Merge pull request #4177 from Manouchehri/fix-constant-log-spam-4146
Stop throwing constant S3 spam on cache misses
This commit is contained in:
commit
ec3e2a1e66
1 changed files with 1 additions and 1 deletions
|
|
@ -1192,7 +1192,7 @@ class S3Cache(BaseCache):
|
|||
return cached_response
|
||||
except botocore.exceptions.ClientError as e:
|
||||
if e.response["Error"]["Code"] == "NoSuchKey":
|
||||
verbose_logger.error(
|
||||
verbose_logger.debug(
|
||||
f"S3 Cache: The specified key '{key}' does not exist in the S3 bucket."
|
||||
)
|
||||
return None
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue