oslo: remove usage of oslo.log verbose option
The option was deprecated a long time ago, and will be removed in one of the next library releases, which will render tacker broken if we keep using the option. More details: http://lists.openstack.org/pipermail/openstack-dev/2016-May/095166.html Change-Id: Iebd08194a600d3537df7a5ee7ab735e8f0a38899 Closes-Bug: #1586066
This commit is contained in:
parent
70190b66ba
commit
0d9f84c451
devstack/lib
doc/source/install
etc/tacker
tacker
@ -244,7 +244,6 @@ function configure_tacker {
|
|||||||
# allow tacker user to administer tacker to match tacker account
|
# allow tacker user to administer tacker to match tacker account
|
||||||
sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:tacker"/g' $TACKER_POLICY_FILE
|
sed -i 's/"context_is_admin": "role:admin"/"context_is_admin": "role:admin or user_name:tacker"/g' $TACKER_POLICY_FILE
|
||||||
|
|
||||||
iniset $TACKER_CONF DEFAULT verbose True
|
|
||||||
iniset $TACKER_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
|
iniset $TACKER_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
|
||||||
iniset $TACKER_CONF DEFAULT policy_file $TACKER_POLICY_FILE
|
iniset $TACKER_CONF DEFAULT policy_file $TACKER_POLICY_FILE
|
||||||
|
|
||||||
|
@ -180,7 +180,6 @@ d). Provide an endpoint to tacker service.
|
|||||||
auth_strategy = keystone
|
auth_strategy = keystone
|
||||||
policy_file = /usr/local/etc/tacker/policy.json
|
policy_file = /usr/local/etc/tacker/policy.json
|
||||||
debug = True
|
debug = True
|
||||||
verbose = True
|
|
||||||
use_syslog = False
|
use_syslog = False
|
||||||
state_path = /var/lib/tacker
|
state_path = /var/lib/tacker
|
||||||
...
|
...
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
# Print more verbose output (set logging level to INFO instead of default WARNING level).
|
|
||||||
# verbose = False
|
|
||||||
|
|
||||||
# Print debugging output (set logging level to DEBUG instead of default WARNING level).
|
# Print debugging output (set logging level to DEBUG instead of default WARNING level).
|
||||||
# debug = False
|
# debug = False
|
||||||
|
|
||||||
|
@ -68,12 +68,7 @@ class TackerApiService(WsgiService):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def create(cls, app_name='tacker'):
|
def create(cls, app_name='tacker'):
|
||||||
|
|
||||||
# Setup logging early, supplying both the CLI options and the
|
# Setup logging early
|
||||||
# configuration mapping from the config file
|
|
||||||
# We only update the conf dict for the verbose and debug
|
|
||||||
# flags. Everything else must be set up in the conf file...
|
|
||||||
# Log the options used when starting if we're in debug mode...
|
|
||||||
|
|
||||||
config.setup_logging(cfg.CONF)
|
config.setup_logging(cfg.CONF)
|
||||||
# Dump the initial option values
|
# Dump the initial option values
|
||||||
cfg.CONF.log_opt_values(LOG, std_logging.DEBUG)
|
cfg.CONF.log_opt_values(LOG, std_logging.DEBUG)
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
# Show more verbose log output (sets INFO log level output)
|
|
||||||
verbose = True
|
|
||||||
|
|
||||||
# Show debugging output in logs (sets DEBUG log level output)
|
# Show debugging output in logs (sets DEBUG log level output)
|
||||||
debug = False
|
debug = False
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user