From 2f33f9893adff8c39ed490c3b5e68a3d9068320d Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Mon, 24 Jan 2022 21:50:51 -0500 Subject: [PATCH] ENH: add logging if user-requirements-txt-url found --- tljh/installer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tljh/installer.py b/tljh/installer.py index 2e91e18..6852c5c 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -446,6 +446,8 @@ def main(): ensure_config_yaml(pm) ensure_admins(args.admin) ensure_usergroups() + if args.user_requirements_txt_url: + logger.info("installing packages from user_requirements_txt_url") ensure_user_environment(args.user_requirements_txt_url) logger.info("Setting up JupyterHub...")