summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/heat-api4
-rwxr-xr-xbin/heat-api-cfn4
-rwxr-xr-xbin/heat-api-cloudwatch4
3 files changed, 6 insertions, 6 deletions
diff --git a/bin/heat-api b/bin/heat-api
index 7444f666c..77f11f8c5 100755
--- a/bin/heat-api
+++ b/bin/heat-api
@@ -35,7 +35,7 @@ from oslo.config import cfg
from oslo import i18n
from heat.common import config
-from heat.common.i18n import _
+from heat.common.i18n import _LI
from heat.common import messaging
from heat.common import profiler
from heat.common import wsgi
@@ -56,7 +56,7 @@ if __name__ == '__main__':
port = cfg.CONF.heat_api.bind_port
host = cfg.CONF.heat_api.bind_host
- LOG.info(_('Starting Heat ReST API on %(host)s:%(port)s'),
+ LOG.info(_LI('Starting Heat ReST API on %(host)s:%(port)s'),
{'host': host, 'port': port})
profiler.setup('heat-api', host)
server = wsgi.Server()
diff --git a/bin/heat-api-cfn b/bin/heat-api-cfn
index b21080777..2d1038bc2 100755
--- a/bin/heat-api-cfn
+++ b/bin/heat-api-cfn
@@ -37,7 +37,7 @@ from oslo.config import cfg
from oslo import i18n
from heat.common import config
-from heat.common.i18n import _
+from heat.common.i18n import _LI
from heat.common import messaging
from heat.common import profiler
from heat.common import wsgi
@@ -58,7 +58,7 @@ if __name__ == '__main__':
port = cfg.CONF.heat_api_cfn.bind_port
host = cfg.CONF.heat_api_cfn.bind_host
- LOG.info(_('Starting Heat API on %(host)s:%(port)s'),
+ LOG.info(_LI('Starting Heat API on %(host)s:%(port)s'),
{'host': host, 'port': port})
profiler.setup('heat-api-cfn', host)
server = wsgi.Server()
diff --git a/bin/heat-api-cloudwatch b/bin/heat-api-cloudwatch
index fea213bc2..0cecfffbd 100755
--- a/bin/heat-api-cloudwatch
+++ b/bin/heat-api-cloudwatch
@@ -37,7 +37,7 @@ from oslo.config import cfg
from oslo import i18n
from heat.common import config
-from heat.common.i18n import _
+from heat.common.i18n import _LI
from heat.common import messaging
from heat.common import profiler
from heat.common import wsgi
@@ -58,7 +58,7 @@ if __name__ == '__main__':
port = cfg.CONF.heat_api_cloudwatch.bind_port
host = cfg.CONF.heat_api_cloudwatch.bind_host
- LOG.info(_('Starting Heat CloudWatch API on %(host)s:%(port)s'),
+ LOG.info(_LI('Starting Heat CloudWatch API on %(host)s:%(port)s'),
{'host': host, 'port': port})
profiler.setup('heat-api-cloudwatch', host)
server = wsgi.Server()