mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +00:00
use prints
This commit is contained in:
parent
63e853e161
commit
1ef814dc97
1 changed files with 5 additions and 11 deletions
|
@ -190,9 +190,7 @@ def setup_admin_ui_on_server_root_path():
|
|||
build_ui_path = os.path.join(current_dir, "build_ui_custom_path.sh")
|
||||
package_path = os.path.join(current_dir, "package.json")
|
||||
|
||||
verbose_proxy_logger.debug(
|
||||
f"Setting up Admin UI on {server_root_path}/ui ......."
|
||||
) # noqa
|
||||
print(f"Setting up Admin UI on {server_root_path}/ui .......") # noqa
|
||||
|
||||
try:
|
||||
# Change the current working directory
|
||||
|
@ -212,21 +210,17 @@ def setup_admin_ui_on_server_root_path():
|
|||
["./build_ui_custom_path.sh", f"{server_root_path}/ui"], check=True
|
||||
)
|
||||
|
||||
verbose_proxy_logger.debug("Admin UI setup completed successfully.") # noqa
|
||||
print("Admin UI setup completed successfully.") # noqa
|
||||
|
||||
except subprocess.CalledProcessError as e:
|
||||
verbose_proxy_logger.debug(
|
||||
f"An error occurred during the Admin UI setup: {e}"
|
||||
) # noqa
|
||||
print(f"An error occurred during the Admin UI setup: {e}") # noqa
|
||||
|
||||
except Exception as e:
|
||||
verbose_proxy_logger.debug(f"An unexpected error occurred: {e}")
|
||||
print(f"An unexpected error occurred: {e}") # noqa
|
||||
|
||||
finally:
|
||||
# Always return to the original directory, even if an error occurred
|
||||
os.chdir(original_dir)
|
||||
verbose_proxy_logger.debug(
|
||||
f"Returned to original directory: {original_dir}"
|
||||
) # noqa
|
||||
print(f"Returned to original directory: {original_dir}") # noqa
|
||||
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue