From 29b4a1ead7134676fc34e4a1df55fb10cb676d43 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Mon, 22 May 2023 14:49:33 -0400 Subject: [PATCH] dropping the lack of a DB connection to debug level --- src/common/pg_utils_multi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/pg_utils_multi.py b/src/common/pg_utils_multi.py index 3f42301..610713e 100644 --- a/src/common/pg_utils_multi.py +++ b/src/common/pg_utils_multi.py @@ -195,7 +195,7 @@ def check_db_connection(self, db_info: namedtuple) -> bool: try: # is there an existing connection if not db_info.conn: - self.logger.warning('Existing DB connection not found for %s', db_info.name) + self.logger.debug('Existing DB connection not found for %s', db_info.name) # force getting a new connection ret_val = False