diff --git a/zproject/settings.py b/zproject/settings.py index 26f2322f7a..72612e66f3 100644 --- a/zproject/settings.py +++ b/zproject/settings.py @@ -850,7 +850,7 @@ LOGGING: Dict[str, Any] = { 'handlers': ['console', 'ldap_file', 'errors_file'], 'propagate': False, }, - 'pika.adapters': { + 'pika': { # pika is super chatty on INFO. 'level': 'WARNING', # pika spews a lot of ERROR logs when a connection fails. @@ -859,11 +859,6 @@ LOGGING: Dict[str, Any] = { 'handlers': ['console', 'file', 'errors_file'], 'propagate': False, }, - 'pika.connection': { - # Leave `zulip_admins` out of the handlers. See pika.adapters above. - 'handlers': ['console', 'file', 'errors_file'], - 'propagate': False, - }, 'requests': { 'level': 'WARNING', },