From 95715c9fa37b314b7f7093c3bf9363fa017652f8 Mon Sep 17 00:00:00 2001 From: "ChangBo Guo(gcb)" Date: Fri, 10 Mar 2017 18:45:59 +0800 Subject: [PATCH] Remove usage of option 'verbose' Config option 'verbose' wase deprecated on aug 1, 2015 in review: https://review.openstack.org/#/c/206437/ Oslo team decide to remove this option, need cleanup the usage of it in consuming project before removing it from oslo.log. Change-Id: I102e8c7bca508b17ce2987b33148e99c79d0c147 --- heat/common/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/common/wsgi.py b/heat/common/wsgi.py index f24000a2fc..324f3c1578 100644 --- a/heat/common/wsgi.py +++ b/heat/common/wsgi.py @@ -933,7 +933,7 @@ class Resource(object): def log_exception(err, exc_info): - args = {'exc_info': exc_info} if cfg.CONF.verbose or cfg.CONF.debug else {} + args = {'exc_info': exc_info} if cfg.CONF.debug else {} LOG.error(_LE("Unexpected error occurred serving API: %s"), err, **args)