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 1deaf85 commit 92210f5Copy full SHA for 92210f5
sphinx/ext/viewcode.py
@@ -65,8 +65,8 @@ def _get_full_modname(modname: str, attribute: str) -> str | None:
65
return getattr(value, '__module__', None)
66
except AttributeError:
67
# sphinx.ext.viewcode can't follow class instance attribute
68
- # then AttributeError logging output only verbose mode.
69
- logger.verbose("Didn't find %s in %s", attribute, modname)
+ # then AttributeError logging output only debug mode.
+ logger.debug("Didn't find %s in %s", attribute, modname)
70
return None
71
except Exception as e:
72
# sphinx.ext.viewcode follow python domain directives.
0 commit comments