Log at info level

Change-Id: Ie8fc849dfaa21ee5c170c571aea0d7b061f8f339
This commit is contained in:
James E. Blair 2021-02-11 09:58:55 -08:00
parent 7b2cba8657
commit 6a0e496a5b

View File

@ -193,12 +193,12 @@ class CloudCache(object):
self.clouds = []
for cloud_name in cloud_names:
self.log.warning('Using cloud %s', cloud_name)
self.log.info('Using cloud %s', cloud_name)
self.clouds.append(openstack.connect(cloud=cloud_name))
self.container_prefix = os.environ.get('CONTAINER_PREFIX', '')
if self.container_prefix:
self.log.warning('Using container prefix %s',
self.container_prefix)
self.log.info('Using container prefix %s',
self.container_prefix)
def __call__(self, environ, start_response):
for chunk in self.app(environ, start_response, self.clouds,