-
Notifications
You must be signed in to change notification settings - Fork 140
A user tool to debug visibility of objects #522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
46a4ee9
3ac44d8
86382d9
db28216
9c8d0a2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -261,6 +261,7 @@ def setup(app): | |
app.add_config_value("autoapi_generate_api_docs", True, "html") | ||
app.add_config_value("autoapi_prepare_jinja_env", None, "html") | ||
app.add_config_value("autoapi_own_page_level", "module", "html") | ||
app.add_config_value("autoapi_verbose_visibility", 0, "html") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we utilise logging levels instead of needing to invent our own way of configuring verbosity? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep. I was just worrying about not changing the current logging behaviour too much! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, looking at this again, it adds way too much output to debug mode. I think it makes sense to have this separate for debugging visibility. Also I split the visibility debugging into two verbosity levels as usually level 1 will suffice, but allowing for deeper debugging,. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In which case please can you add some documentation for this new config option to |
||
app.add_autodocumenter(documenters.AutoapiFunctionDocumenter) | ||
app.add_autodocumenter(documenters.AutoapiPropertyDocumenter) | ||
app.add_autodocumenter(documenters.AutoapiDecoratorDocumenter) | ||
|
Uh oh!
There was an error while loading. Please reload this page.