summaryrefslogtreecommitdiff
path: root/nova/config.py
diff options
context:
space:
mode:
authorMichael Still <mikal@stillhq.com>2015-09-03 17:23:47 +1000
committerMichael Still <mikal@stillhq.com>2015-09-03 17:23:47 +1000
commitbeb6774b73553fcb37ba9da2a6f8d7a5cece894b (patch)
treefc16cf4dba58587c0a5ffe1975efd39a9b38777e /nova/config.py
parentbbe369c9b13117a0df9e605074d92f0a0d4551ef (diff)
downloadnova-beb6774b73553fcb37ba9da2a6f8d7a5cece894b.tar.gz
Add notes explaining vmware's suds usage
As per the review comments from the recent revert of suds logging changes (I43b66aa6be6fc1b2ed43650bd5cfe69963d8a16e), note that suds is used by the vmware driver and removing the suds logging config causes heaps of extra log lines for their tempest runs. Change-Id: I2dd7126f895eb862bdb2a5b93d17be6571e01369
Diffstat (limited to 'nova/config.py')
-rw-r--r--nova/config.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/config.py b/nova/config.py
index c7b5c85732..4e0950a126 100644
--- a/nova/config.py
+++ b/nova/config.py
@@ -29,6 +29,9 @@ CONF = cfg.CONF
_DEFAULT_SQL_CONNECTION = 'sqlite:///' + paths.state_path_def('nova.sqlite')
+# NOTE(mikal): suds is used by the vmware driver, removing this will
+# cause many extraneous log lines for their tempest runs. Refer to
+# https://review.openstack.org/#/c/219225/ for details.
_DEFAULT_LOG_LEVELS = ['amqp=WARN', 'amqplib=WARN', 'boto=WARN',
'qpid=WARN', 'sqlalchemy=WARN', 'suds=INFO',
'oslo_messaging=INFO', 'iso8601=WARN',