Fix typo in error logging (Excepton -> Exception)

This commit is contained in:
lpo-pb1234 2026-04-29 11:11:49 +02:00 committed by GitHub
parent 6e6b2ca2d8
commit ffcdce8ee4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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