diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-10-31 21:31:17 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-10-31 21:31:17 +0000 |
| commit | 3e04c41c96fbf5916ff5ab8c3a8bfec5021f6b04 (patch) | |
| tree | 0867d3853f94a25023301da940c11c872bf17bca /openstack/common | |
| parent | d7b63972c77cae255872f0837cb043361da47cb2 (diff) | |
| parent | c8cf6f74001ec3ced16a516c7b10a596b75bc34c (diff) | |
| download | oslo-3e04c41c96fbf5916ff5ab8c3a8bfec5021f6b04.tar.gz oslo-3e04c41c96fbf5916ff5ab8c3a8bfec5021f6b04.tar.xz oslo-3e04c41c96fbf5916ff5ab8c3a8bfec5021f6b04.zip | |
Merge "move nova.common.deprecated to openstack-common"
Diffstat (limited to 'openstack/common')
| -rw-r--r-- | openstack/common/log.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/openstack/common/log.py b/openstack/common/log.py index 783ff2d..6cb3dfc 100644 --- a/openstack/common/log.py +++ b/openstack/common/log.py @@ -76,6 +76,9 @@ log_opts = [ cfg.BoolOpt('publish_errors', default=False, help='publish error events'), + cfg.BoolOpt('fatal_deprecations', + default=False, + help='make deprecations fatal'), # NOTE(mikal): there are two options here because sometimes we are handed # a full instance (and could include more information), and other times we @@ -170,6 +173,14 @@ class ContextAdapter(logging.LoggerAdapter): def audit(self, msg, *args, **kwargs): self.log(logging.AUDIT, msg, *args, **kwargs) + def deprecated(self, msg, *args, **kwargs): + stdmsg = _("Deprecated Config: %s") % msg + if CONF.fatal_deprecations: + self.critical(stdmsg, *args, **kwargs) + raise DeprecatedConfig(msg=stdmsg) + else: + self.warn(stdmsg, *args, **kwargs) + def process(self, msg, kwargs): if 'extra' not in kwargs: kwargs['extra'] = {} @@ -450,3 +461,10 @@ class ColorHandler(logging.StreamHandler): def format(self, record): record.color = self.LEVEL_COLORS[record.levelno] return logging.StreamHandler.format(self, record) + + +class DeprecatedConfig(Exception): + message = _("Fatal call to deprecated config: %(msg)s") + + def __init__(self, msg): + super(Exception, self).__init__(self.message % dict(msg=msg)) |
