From 08887f8c5f817ae163848d53165e073522b2666f Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Wed, 6 May 2020 10:33:11 +0200 Subject: [PATCH] Silence debug messages from oslo_messaging We already silence the "oslo.messaging" prefix, but the library also uses "oslo_messsaging" in some cases. Change-Id: Ifa9743c39bbd1424fbb07e2b65f409c9d7ca826a (cherry picked from commit aa43322544d70994ba94c63c0de46a1b80234467) --- ironic/conf/opts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ironic/conf/opts.py b/ironic/conf/opts.py index 61e6fe8958..2c4ec2d045 100644 --- a/ironic/conf/opts.py +++ b/ironic/conf/opts.py @@ -88,7 +88,9 @@ def update_opt_defaults(): 'amqp=WARNING', 'amqplib=WARNING', 'qpid.messaging=INFO', + # This comes in two flavors 'oslo.messaging=INFO', + 'oslo_messaging=INFO', 'sqlalchemy=WARNING', 'stevedore=INFO', 'eventlet.wsgi.server=INFO',