From a5cd041ccf83f7ce77f1348880afb3b953c3cfba Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 5 Aug 2024 19:13:46 -0700 Subject: [PATCH] add debug statements when connected to prisma db --- litellm/proxy/utils.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 923021efc2..d50a80eb3c 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -804,7 +804,7 @@ class PrismaClient: spend_log_transactions: List = [] def __init__(self, database_url: str, proxy_logging_obj: ProxyLogging): - print_verbose( + verbose_proxy_logger.debug( "LiteLLM: DATABASE_URL Set in config, trying to 'pip install prisma'" ) ## init logging object @@ -833,8 +833,9 @@ class PrismaClient: os.chdir(original_dir) # Now you can import the Prisma Client from prisma import Prisma # type: ignore - + verbose_proxy_logger.debug("Connecting Prisma Client to DB..") self.db = Prisma() # Client to connect to Prisma db + verbose_proxy_logger.debug("Success - Connected Prisma Client to DB") def hash_token(self, token: str): # Hash the string using SHA-256