From 87eca83a047a103529d2563a046e773705805f89 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Thu, 26 Apr 2012 10:49:10 -0700 Subject: [PATCH] Quiet down the QPID logging since it isn't helpful and makes logs hard to read Should likely be removed later, but for the moment, logs readable without grep now. Signed-off-by: Steven Dake --- heat/common/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/heat/common/config.py b/heat/common/config.py index 249a2bad..dea2b452 100644 --- a/heat/common/config.py +++ b/heat/common/config.py @@ -233,6 +233,9 @@ def setup_logging(conf): else: root_logger.setLevel(logging.WARNING) + # quiet down the qpid logging + root_logger.getChild('qpid.messaging').setLevel(logging.INFO) + formatter = logging.Formatter(conf.log_format, conf.log_date_format) if conf.use_syslog: -- 2.45.2