Merge "Unify the usage of the log module"

This commit is contained in:
Jenkins
2016-12-14 01:38:02 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 4 deletions

View File

@@ -16,7 +16,6 @@
# Much of this module is based on the work of the Ironic team
# see http://git.openstack.org/cgit/openstack/ironic/tree/ironic/cmd/api.py
import logging as std_logging
import sys
from oslo_config import cfg
@@ -53,7 +52,7 @@ def main():
restapp.serve(service, CONF, workers)
LOG.info(_LI("Configuration:"))
CONF.log_opt_values(LOG, std_logging.INFO)
CONF.log_opt_values(LOG, logging.INFO)
restapp.wait()

View File

@@ -21,7 +21,6 @@ import eventlet
if __name__ == "__main__":
eventlet.monkey_patch()
import logging as std_logging
import sys
from oslo_config import cfg
@@ -52,7 +51,7 @@ def main():
xservice.serve(xservice.create_service(), workers)
LOG.info(_LI("Configuration:"))
CONF.log_opt_values(LOG, std_logging.INFO)
CONF.log_opt_values(LOG, logging.INFO)
xservice.wait()