From 6a0e496a5beae73a871232242e8087ab5d2c3fb5 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 11 Feb 2021 09:58:55 -0800 Subject: [PATCH] Log at info level Change-Id: Ie8fc849dfaa21ee5c170c571aea0d7b061f8f339 --- zuul_storage_proxy/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,