mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
fix(types): log AdapterCompletionStreamWrapper errors lazily
This commit is contained in:
parent
4e32a8bf6a
commit
66373eb25f
1 changed files with 1 additions and 1 deletions
|
|
@ -2594,7 +2594,7 @@ class AdapterCompletionStreamWrapper:
|
|||
except StopIteration:
|
||||
raise StopIteration
|
||||
except Exception as e:
|
||||
verbose_logger.debug(f"AdapterCompletionStreamWrapper - {e}")
|
||||
verbose_logger.debug("AdapterCompletionStreamWrapper - %s", e)
|
||||
|
||||
async def __anext__(self):
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue