Fixes logging in astara-debug-router

Switches to using our oslo logging config and ensures its setup correctly.

Change-Id: I630faf9a5d66f566e09145ad28fb189cb81dfe6c
Closes-bug: #1528338
This commit is contained in:
Adam Gandelman 2015-12-21 12:45:34 -08:00
parent da11a6d5ed
commit 5af980acbe
2 changed files with 5 additions and 12 deletions

View File

@ -15,11 +15,11 @@
# under the License.
import logging
import os
import sys
from oslo_config import cfg
from oslo_log import log as logging
from astara import drivers
from astara import state
@ -54,17 +54,7 @@ def debug_one_router(args=sys.argv[1:]):
cfg.CONF.set_override('boot_timeout', 60000)
cfg.CONF.import_opt('host', 'astara.main')
config.parse_config(args)
logging.basicConfig(
level=logging.DEBUG,
format=':'.join('%(' + n + ')s'
for n in ['processName',
'threadName',
'name',
'levelname',
'message']),
)
logging.setup(cfg.CONF, __name__)
log = logging.getLogger(__name__)
log.debug('Proxy settings: %r', os.getenv('no_proxy'))

View File

@ -0,0 +1,3 @@
---
fixes:
- Bug `1524979 <https://bugs.launchpad.net/astara/+bug/1524979/>`_, Bug `1528338 <https://bugs.launchpad.net/astara/+bug/1528338/>`_ \- astara-debug-router command has been fixed