mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
address greptile review feedback (greploop iteration 3)
- Add missing traceback to team member spend enqueue error log
This commit is contained in:
parent
fcfaad12dc
commit
bacfa9653a
1 changed files with 2 additions and 1 deletions
|
|
@ -445,11 +445,12 @@ class DBSpendUpdateWriter:
|
|||
except Exception as e:
|
||||
verbose_proxy_logger.error(
|
||||
"Spend tracking - failed to enqueue team member spend update. "
|
||||
"team_id=%s, user_id=%s, response_cost=%s - %s",
|
||||
"team_id=%s, user_id=%s, response_cost=%s - %s\n%s",
|
||||
team_id,
|
||||
user_id,
|
||||
response_cost,
|
||||
str(e),
|
||||
traceback.format_exc(),
|
||||
)
|
||||
except Exception as e:
|
||||
verbose_proxy_logger.error(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue