Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Set wsgi startup log level to INFO
Sets wsgi startup log to INFO so that it is
still visible when log level is raised above
DEBUG.

Co-authored-by: Kanami Akama <k-akama@intellilink.co.jp>
Fixes: bug #1208778

Change-Id: I977f4ac6fc5e11710922dc607d5ce23a0cc74237
  • Loading branch information
dosaboy committed Aug 6, 2013
1 parent db9535c commit 3a55c7b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions keystone/common/environment/eventlet_server.py
Expand Up @@ -48,10 +48,10 @@ def __init__(self, application, host=None, port=None, threads=1000):

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
Expand Down

0 comments on commit 3a55c7b

Please sign in to comment.