Skip to content

Commit

Permalink
fix logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Jan 7, 2024
1 parent cb16822 commit a0817ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jhub_apps/service/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ async def conda_environments(user: User = Depends(get_current_user)):
logging.info(f"Getting conda environments for user: {user}")
config = get_jupyterhub_config()
conda_envs = get_conda_envs(config)
logger.info(f"Found conda environments: {conda_envs}")
return conda_envs


Expand All @@ -238,7 +239,7 @@ async def spawner_profiles(user: User = Depends(get_current_user)):
logging.info(f"Getting spawner profiles for user: {user}")
config = get_jupyterhub_config()
spawner_profiles_ = await get_spawner_profiles(config)
logger.info(f"Loaded spawner profiles: {config}")
logger.info(f"Loaded spawner profiles: {spawner_profiles_}")
return spawner_profiles_


Expand Down

0 comments on commit a0817ba

Please sign in to comment.