fix(utils.py): use print_verbose for statements, so debug can be seen when running sdk

This commit is contained in:
Krrish Dholakia
2024-02-06 15:17:35 -08:00
parent d189e95045
commit 3db9830d4b
+1 -1
View File
@@ -980,7 +980,7 @@ class Logging:
self.model_call_details["log_event_type"] = "post_api_call"
# User Logging -> if you pass in a custom logging function
verbose_logger.debug(
print_verbose(
f"RAW RESPONSE:\n{self.model_call_details.get('original_response', self.model_call_details)}\n\n"
)
if self.logger_fn and callable(self.logger_fn):