diff --git a/src/common/pg_utils_multi.py b/src/common/pg_utils_multi.py index cff559d..3f42301 100644 --- a/src/common/pg_utils_multi.py +++ b/src/common/pg_utils_multi.py @@ -213,13 +213,13 @@ def check_db_connection(self, db_info: namedtuple) -> bool: ret_val = bool(db_version) except psycopg2.DatabaseError: - self.logger.error('Error database error checking DB connection') + self.logger.debug('Error database error checking DB connection.') # connection failed ret_val = False except psycopg2.InterfaceError: - self.logger.error('Error database interface error checking DB connection') + self.logger.debug('Error database interface error checking DB connection.') # connection failed ret_val = False