From cc25e2cdd8de5b37098147910c1c9db301cd5ca8 Mon Sep 17 00:00:00 2001 From: jcannava Date: Thu, 16 Jul 2015 16:18:59 -0500 Subject: [PATCH] Which interfaces trove starts up on should be logged. The bug specifically states that when trove starts up on 0.0.0.0 it should be logged, but there is no specific reason that there shouldn't be a log for admins to quickly reference what interface has the trove port. Change-Id: I1f6ba92d58096cff07f6e42391c59ed9fb07e0ac Closes-Bug: 1350060 --- trove/common/wsgi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/trove/common/wsgi.py b/trove/common/wsgi.py index 7e3b3ca4f2..312893d997 100644 --- a/trove/common/wsgi.py +++ b/trove/common/wsgi.py @@ -77,6 +77,7 @@ def launch(app_name, port, paste_config_file, data={}, launcher.wait() """ + LOG.debug("Trove started on %s", host) app = pastedeploy.paste_deploy_app(paste_config_file, app_name, data) server = base_wsgi.Service(app, port, host=host, backlog=backlog, threads=threads)