aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/utils.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 12:33:29 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-09 12:49:23 -0700
commit92a2e2e90981c0615171abe03645a772d84f6986 (patch)
tree474ad5ea6e040e2c07967b11053aa27707fd30d7 /lib/bb/utils.py
parented35b30f8e09b0bfc15102fa6483c55d6b7d61de (diff)
downloadbitbake-92a2e2e90981c0615171abe03645a772d84f6986.tar.gz
Ensure we always utilize the correct messaging domains
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/utils.py')
-rw-r--r--lib/bb/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index 83d05aaa7..1c0479753 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -506,7 +506,7 @@ def filter_environment(good_vars):
del os.environ[key]
if len(removed_vars):
- bb.debug(1, "Removed the following variables from the environment:", ",".join(removed_vars))
+ bb.msg.debug(1, bb.msg.domain.Util, "Removed the following variables from the environment:", ",".join(removed_vars))
return removed_vars
@@ -572,10 +572,10 @@ def mkdirhier(dir):
directory already exists like os.makedirs
"""
- bb.debug(3, "mkdirhier(%s)" % dir)
+ bb.msg.debug(3, bb.msg.domain.Util, "mkdirhier(%s)" % dir)
try:
os.makedirs(dir)
- bb.debug(2, "created " + dir)
+ bb.msg.debug(2, bb.msg.domain.Util, "created " + dir)
except OSError, e:
if e.errno != 17: raise e