summaryrefslogtreecommitdiffstats
path: root/lib/bb/msg.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-02-11 21:26:51 -0700
committerChris Larson <chris_larson@mentor.com>2011-02-11 21:26:53 -0700
commit67a55a6b45fec300bea42c18be41cf0a2f931072 (patch)
treeb411aa119c9844faaaa605b083466adb4fb30e34 /lib/bb/msg.py
parent01d12f4f96447aeda48e504fb0708c2e0dc91e30 (diff)
downloadbitbake-contrib-67a55a6b45fec300bea42c18be41cf0a2f931072.tar.gz
Enable some DeprecationWarnings
We'll be skipping the Pending Deprecation step given our release process. Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/msg.py')
-rw-r--r--lib/bb/msg.py22
1 files changed, 10 insertions, 12 deletions
diff --git a/lib/bb/msg.py b/lib/bb/msg.py
index 1f9ff904a..a7ac85079 100644
--- a/lib/bb/msg.py
+++ b/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: