Skip to content

Commit

Permalink
Merge branch 'main' into async-authorizer-2
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Dec 6, 2023
2 parents efd06c6 + b462387 commit 1b071ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jupyter_server/extension/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ def get_metadata(package_name, logger=None):
# each module took to import. This makes it much easier for users to report
# slow loading modules upstream, as slow loading modules will block server startup
if logger:
logger.info(f"Package {package_name} took {duration:.4f}s to import")
log = logger.info if duration > 0.1 else logger.debug
log(f"Extension package {package_name} took {duration:.4f}s to import")

try:
return module, module._jupyter_server_extension_points()
Expand Down

0 comments on commit 1b071ab

Please sign in to comment.