diff --git a/src/mkdocstrings_handlers/python/handler.py b/src/mkdocstrings_handlers/python/handler.py index afb8ed9..718e9d6 100644 --- a/src/mkdocstrings_handlers/python/handler.py +++ b/src/mkdocstrings_handlers/python/handler.py @@ -217,6 +217,7 @@ def collect(self, identifier: str, config: dict) -> CollectorItem: # noqa: D102 unresolved, iterations = loader.resolve_aliases(implicit=False, external=False) if unresolved: logger.warning(f"{len(unresolved)} aliases were still unresolved after {iterations} iterations") + logger.debug(f"Unresolved aliases: {', '.join(sorted(unresolved))}") try: doc_object = self._modules_collection[identifier]