diff --git a/zuul_storage_proxy/__init__.py b/zuul_storage_proxy/__init__.py index b249542..fca6e70 100644 --- a/zuul_storage_proxy/__init__.py +++ b/zuul_storage_proxy/__init__.py @@ -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,