]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Quiet down the QPID logging since it isn't helpful and makes logs hard to read
authorSteven Dake <sdake@redhat.com>
Thu, 26 Apr 2012 17:49:10 +0000 (10:49 -0700)
committerSteven Dake <sdake@redhat.com>
Thu, 26 Apr 2012 17:49:10 +0000 (10:49 -0700)
Should likely be removed later, but for the moment, logs readable without
grep now.

Signed-off-by: Steven Dake <sdake@redhat.com>
heat/common/config.py

index 249a2badc92d3e2d718aa3296971944578c537dc..dea2b45272e721f2d62cde3ab41610bdc8dfb6fb 100644 (file)
@@ -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: