From 0788081ac7a04f94c349b2673ed6ae122aa7d1a8 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Fri, 11 Feb 2011 21:26:51 -0700 Subject: Enable some DeprecationWarnings We'll be skipping the Pending Deprecation step given our release process. (Bitbake rev: 67a55a6b45fec300bea42c18be41cf0a2f931072) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- bitbake/lib/bb/msg.py | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/msg.py b/bitbake/lib/bb/msg.py index 1f9ff90..a7ac850 100644 --- a/bitbake/lib/bb/msg.py +++ b/bitbake/lib/bb/msg.py @@ -147,8 +147,8 @@ def set_debug_domains(domainargs): # def debug(level, msgdomain, msg): - warnings.warn("bb.msg.debug will soon be deprecated in favor of the python 'logging' module", - PendingDeprecationWarning, stacklevel=2) + warnings.warn("bb.msg.debug is deprecated in favor of the python 'logging' module", + DeprecationWarning, stacklevel=2) level = logging.DEBUG - (level - 1) if not msgdomain: logger.debug(level, msg) @@ -156,13 +156,13 @@ def debug(level, msgdomain, msg): loggers[msgdomain].debug(level, msg) def plain(msg): - warnings.warn("bb.msg.plain will soon be deprecated in favor of the python 'logging' module", - PendingDeprecationWarning, stacklevel=2) + warnings.warn("bb.msg.plain is deprecated in favor of the python 'logging' module", + DeprecationWarning, stacklevel=2) logger.plain(msg) def note(level, msgdomain, msg): - warnings.warn("bb.msg.note will soon be deprecated in favor of the python 'logging' module", - PendingDeprecationWarning, stacklevel=2) + warnings.warn("bb.msg.note is deprecated in favor of the python 'logging' module", + DeprecationWarning, stacklevel=2) if level > 1: if msgdomain: logger.verbose(msg) @@ -175,24 +175,22 @@ def note(level, msgdomain, msg): loggers[msgdomain].info(msg) def warn(msgdomain, msg): - warnings.warn("bb.msg.warn will soon be deprecated in favor of the python 'logging' module", - PendingDeprecationWarning, stacklevel=2) + warnings.warn("bb.msg.warn is deprecated in favor of the python 'logging' module", + DeprecationWarning, stacklevel=2) if not msgdomain: logger.warn(msg) else: loggers[msgdomain].warn(msg) def error(msgdomain, msg): - warnings.warn("bb.msg.error will soon be deprecated in favor of the python 'logging' module", - PendingDeprecationWarning, stacklevel=2) + warnings.warn("bb.msg.error is deprecated in favor of the python 'logging' module", + DeprecationWarning, stacklevel=2) if not msgdomain: logger.error(msg) else: loggers[msgdomain].error(msg) def fatal(msgdomain, msg): - warnings.warn("bb.msg.fatal will soon be deprecated in favor of raising appropriate exceptions", - PendingDeprecationWarning, stacklevel=2) if not msgdomain: logger.critical(msg) else: -- cgit v1.1