diff --git a/jhub_apps/service/utils.py b/jhub_apps/service/utils.py index 35db0fb3..4dc3b079 100644 --- a/jhub_apps/service/utils.py +++ b/jhub_apps/service/utils.py @@ -22,7 +22,6 @@ def get_jupyterhub_config(): logger.info(f"Getting JHub config from file: {jhub_config_file_path}") hub.load_config_file(jhub_config_file_path) config = hub.config - logger.info(f"JHub config from file: {config}") logger.info(f"JApps config: {config.JAppsConfig}") return config diff --git a/jhub_apps/spawner/spawner_creation.py b/jhub_apps/spawner/spawner_creation.py index 3f4a45aa..54b0487a 100644 --- a/jhub_apps/spawner/spawner_creation.py +++ b/jhub_apps/spawner/spawner_creation.py @@ -22,10 +22,6 @@ class JHubSpawner(base_spawner): async def _get_user_auth_state(self): try: auth_state = await self.user.get_auth_state() - print("PRINT-------------------") - logger.info("^"*100) - logger.info(f"auth_state: {auth_state}") - logger.info("^"*100) return auth_state except Exception as e: logger.exception(e)