Merge "Set wsgi startup log level to INFO"

This commit is contained in:
Jenkins 2013-08-16 01:29:20 +00:00 committed by Gerrit Code Review
commit 7851a3cd62
1 changed files with 4 additions and 4 deletions

View File

@ -47,10 +47,10 @@ class Server(object):
def start(self, key=None, backlog=128):
"""Run a WSGI server with the given application."""
LOG.debug(_('Starting %(arg0)s on %(host)s:%(port)s') %
{'arg0': sys.argv[0],
'host': self.host,
'port': self.port})
LOG.info(_('Starting %(arg0)s on %(host)s:%(port)s') %
{'arg0': sys.argv[0],
'host': self.host,
'port': self.port})
# TODO(dims): eventlet's green dns/socket module does not actually
# support IPv6 in getaddrinfo(). We need to get around this in the