Filter paramiko messages in log config

Update the default server log config so that only messages at
CRITICAL or above from the paramiko.transport logger are logged.
Similarly, only log keystoneauth at WARNING.  Both of these are
fairly chatty on the zuul-launcher.  This matches the current
settings in OpenDev.

Change-Id: I5cfdefac15b630e5846571e2bfd54efb65804356
Depends-On: https://review.opendev.org/977169
This commit is contained in:
James E. Blair
2026-02-17 22:11:46 +00:00
parent c59515122a
commit 363b8f1f64
+8
View File
@@ -119,6 +119,14 @@ _DEFAULT_SERVER_LOGGING_CONFIG = {
'handlers': ['console'],
'level': 'WARN',
},
'paramiko.transport': {
'handlers': ['console'],
'level': 'CRITICAL',
},
'keystoneauth': {
'handlers': ['console'],
'level': 'WARNING',
},
},
'root': {'handlers': []},
}