From ee5b323e949b019dcca93b73ba90e972c17ed583 Mon Sep 17 00:00:00 2001 From: Jens Vagelpohl Date: Tue, 17 Dec 2024 08:49:24 +0100 Subject: [PATCH] - downgrade log messages for silent reconnections to ``debug`` --- src/Products/ZMySQLDA/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Products/ZMySQLDA/db.py b/src/Products/ZMySQLDA/db.py index 4d611ee..85baeb2 100644 --- a/src/Products/ZMySQLDA/db.py +++ b/src/Products/ZMySQLDA/db.py @@ -331,7 +331,7 @@ def _forceReconnection(self, reason=''): """ if reason: if reason in hosed_connection: - LOG.error('Forcing reconnection: %s' % hosed_connection[ + LOG.debug('Forcing reconnection: %s' % hosed_connection[ reason]) else: LOG.debug('Forcing reconnection, reason: %s.' % reason)