From ffcdce8ee45239fd44ebf35aa248613970b27e9f Mon Sep 17 00:00:00 2001 From: lpo-pb1234 Date: Wed, 29 Apr 2026 11:11:49 +0200 Subject: [PATCH] Fix typo in error logging (Excepton -> Exception) --- litellm/caching/dual_cache.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/litellm/caching/dual_cache.py b/litellm/caching/dual_cache.py index 34ae3638a5b..acfe8dbf392 100644 --- a/litellm/caching/dual_cache.py +++ b/litellm/caching/dual_cache.py @@ -126,7 +126,7 @@ class DualCache(BaseCache): return result except Exception as e: - verbose_logger.error(f"LiteLLM Cache: Excepton async add_cache: {str(e)}") + verbose_logger.error(f"LiteLLM Cache: Exception async add_cache: {str(e)}") raise e def get_cache( @@ -356,7 +356,7 @@ class DualCache(BaseCache): await self.redis_cache.async_set_cache(key, value, **kwargs) except Exception as e: verbose_logger.exception( - f"LiteLLM Cache: Excepton async add_cache: {str(e)}" + f"LiteLLM Cache: Exception async add_cache: {str(e)}" ) # async_batch_set_cache @@ -383,7 +383,7 @@ class DualCache(BaseCache): ) except Exception as e: verbose_logger.exception( - f"LiteLLM Cache: Excepton async add_cache: {str(e)}" + f"LiteLLM Cache: Exception async add_cache: {str(e)}" ) async def async_increment_cache(