From 09a04f5b690423c8d85fecd136c2172641084b86 Mon Sep 17 00:00:00 2001 From: Krish Dholakia Date: Sun, 20 Aug 2023 09:55:02 -0700 Subject: [PATCH] updated logging --- litellm/integrations/supabase.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/integrations/supabase.py b/litellm/integrations/supabase.py index edc97b6a3..3ea63f5c6 100644 --- a/litellm/integrations/supabase.py +++ b/litellm/integrations/supabase.py @@ -162,8 +162,8 @@ class Supabase: .execute() ) print(f"data: {data}") - pass except: + print_verbose(f"Supabase Logging Error - {traceback.format_exc()}") pass def log_event( diff --git a/pyproject.toml b/pyproject.toml index 216a05881..875c885e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.431" +version = "0.1.433" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"