diff --git a/litellm/caching.py b/litellm/caching.py index bf11f4c397..2b043f88b3 100644 --- a/litellm/caching.py +++ b/litellm/caching.py @@ -48,6 +48,7 @@ class InMemoryCache(BaseCache): self.ttl_dict = {} def set_cache(self, key, value, **kwargs): + print_verbose("InMemoryCache: set_cache") self.cache_dict[key] = value if "ttl" in kwargs: self.ttl_dict[key] = time.time() + kwargs["ttl"]