summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-07-06 08:14:52 +0000
committerGerrit Code Review <review@openstack.org>2017-07-06 08:14:52 +0000
commit0804af69e3a3a0e20146cb099be3569acb8edffa (patch)
tree29c55d7961228e7357a932b265066352fa74c924
parentae80ab98842116364e746beb5684c92cc9f239cd (diff)
parent53de7315d9d774b1edda65e326a64d13554cd9ac (diff)
downloadoslo-config-0804af69e3a3a0e20146cb099be3569acb8edffa.tar.gz
Merge "sphinxext: Use lower logging level"
-rw-r--r--oslo_config/sphinxext.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/oslo_config/sphinxext.py b/oslo_config/sphinxext.py
index 67ab509..133028a 100644
--- a/oslo_config/sphinxext.py
+++ b/oslo_config/sphinxext.py
@@ -93,7 +93,7 @@ def _get_choice_text(choice):
def _format_group(app, namespace, group_name, group_obj, opt_list):
group_name = group_name or 'DEFAULT'
- app.info('[oslo.config] %s %s' % (namespace, group_name))
+ app.debug('[oslo.config] %s %s' % (namespace, group_name))
yield '.. oslo.config:group:: %s' % group_name
if namespace:
@@ -339,7 +339,7 @@ class ConfigGroup(rst.Directive):
# Store the current group for use later in option directives
env.temp_data['oslo.config:group'] = group_name
- app.info('oslo.config group %s' % group_name)
+ app.debug('oslo.config group %s' % group_name)
# Store the location where this group is being defined
# for use when resolving cross-references later.
@@ -384,7 +384,7 @@ class ConfigOption(ObjectDescription):
def handle_signature(self, sig, signode):
"""Transform an option description into RST nodes."""
optname = sig
- self.env.app.info('oslo.config option %s' % optname)
+ self.env.app.debug('oslo.config option %s' % optname)
# Insert a node into the output showing the option name
signode += addnodes.desc_name(optname, optname)
signode['allnames'] = [optname]