From d2578f0cd2a62929af50beaafde248a6b09a7792 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 5 Jan 2024 17:28:27 +0530 Subject: [PATCH] (ci/cd) proxy print_verbose on failing insert_data --- litellm/proxy/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 3b90a2ad5..5ca8cd3b3 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -449,6 +449,7 @@ class PrismaClient: await asyncio.gather(*tasks) except Exception as e: + print_verbose(f"LiteLLM Prisma Client Exception: {e}") asyncio.create_task( self.proxy_logging_obj.failure_handler(original_exception=e) )