diff --git a/litellm/integrations/custom_logger.py b/litellm/integrations/custom_logger.py index 40242f5c03..0556ceebb9 100644 --- a/litellm/integrations/custom_logger.py +++ b/litellm/integrations/custom_logger.py @@ -124,7 +124,6 @@ class CustomLogger: # https://docs.litellm.ai/docs/observability/custom_callbac start_time, end_time, ) - print_verbose(f"Custom Logger - final response object: {response_obj}") except: # traceback.print_exc() print_verbose(f"Custom Logger Error - {traceback.format_exc()}") @@ -142,7 +141,6 @@ class CustomLogger: # https://docs.litellm.ai/docs/observability/custom_callbac start_time, end_time, ) - print_verbose(f"Custom Logger - final response object: {response_obj}") except: # traceback.print_exc() print_verbose(f"Custom Logger Error - {traceback.format_exc()}") diff --git a/litellm/utils.py b/litellm/utils.py index 5937c072d4..fa3457143a 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -1738,10 +1738,10 @@ class Logging: end_time=end_time, ) if callable(callback): # custom logger functions - print_verbose( - f"Making async function logging call for {callback}, result={result} - {self.model_call_details}", - logger_only=True, - ) + # print_verbose( + # f"Making async function logging call for {callback}, result={result} - {self.model_call_details}", + # logger_only=True, + # ) if self.stream: if ( "async_complete_streaming_response"