refactor(proxy_server): clean up print statements

This commit is contained in:
Krrish Dholakia 2023-10-12 21:39:04 -07:00
parent 3f0bbacac7
commit 06f930a5fb
9 changed files with 775 additions and 2 deletions

View file

@ -88,9 +88,7 @@ def print_verbose(print_statement):
print(print_statement)
def usage_telemetry(feature: str): # helps us know if people are using this feature. Set `litellm --telemetry False` to your cli call to turn this off
print(f"user_telemtry: {user_telemetry}")
if user_telemetry:
print(f"feature telemetry: {feature}")
data = {
"feature": feature # "local_proxy_server"
}