We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50d5417 commit 9164742Copy full SHA for 9164742
1 file changed
src/mkdocstrings_handlers/python/handler.py
@@ -217,6 +217,7 @@ def collect(self, identifier: str, config: dict) -> CollectorItem: # noqa: D102
217
unresolved, iterations = loader.resolve_aliases(implicit=False, external=False)
218
if unresolved:
219
logger.warning(f"{len(unresolved)} aliases were still unresolved after {iterations} iterations")
220
+ logger.debug(f"Unresolved aliases: {', '.join(sorted(unresolved))}")
221
222
try:
223
doc_object = self._modules_collection[identifier]
0 commit comments