diff --git a/litellm/caching.py b/litellm/caching.py index 497dd2371c..6b58cf5276 100644 --- a/litellm/caching.py +++ b/litellm/caching.py @@ -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