mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
fix(utils.py): log cache hit as INFO message
This commit is contained in:
parent
c55a68a9da
commit
8d8f6017d9
1 changed files with 1 additions and 1 deletions
|
@ -3568,7 +3568,7 @@ def client(original_function):
|
||||||
if cached_result is not None and not isinstance(
|
if cached_result is not None and not isinstance(
|
||||||
cached_result, list
|
cached_result, list
|
||||||
):
|
):
|
||||||
print_verbose(f"Cache Hit!")
|
print_verbose("Cache Hit!", log_level="INFO")
|
||||||
cache_hit = True
|
cache_hit = True
|
||||||
end_time = datetime.datetime.now()
|
end_time = datetime.datetime.now()
|
||||||
(
|
(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue