mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
8 lines
No EOL
156 B
Python
8 lines
No EOL
156 B
Python
set_verbose = False
|
|
|
|
def print_verbose(print_statement):
|
|
try:
|
|
if set_verbose:
|
|
print(print_statement) # noqa
|
|
except:
|
|
pass |