summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/__init__.py
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-08-15 08:39:19 +0000
committerRichard Purdie <richard@openedhand.com>2007-08-15 08:39:19 +0000
commit75306742144eb1bd2d57c986d1f836a59a1f0e8b (patch)
treed1a15e84c1ae3c5c2dff906bbdba3d12bf5186e3 /bitbake/lib/bb/__init__.py
parentd7892c265b0e820a28e62a4aa0819d90ea354a5b (diff)
downloadpoky-75306742144eb1bd2d57c986d1f836a59a1f0e8b.tar.gz
bitbake: Sync with upstream 1.8 branch
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2497 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/lib/bb/__init__.py')
-rw-r--r--bitbake/lib/bb/__init__.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py
index 1bfecc49ec..585eec8875 100644
--- a/bitbake/lib/bb/__init__.py
+++ b/bitbake/lib/bb/__init__.py
@@ -97,17 +97,23 @@ class MalformedUrl(Exception):
97####################################################################### 97#######################################################################
98####################################################################### 98#######################################################################
99 99
100def plain(*args):
101 bb.msg.warn(''.join(args))
102
100def debug(lvl, *args): 103def debug(lvl, *args):
101 bb.msg.std_debug(lvl, ''.join(args)) 104 bb.msg.debug(lvl, None, ''.join(args))
102 105
103def note(*args): 106def note(*args):
104 bb.msg.std_note(''.join(args)) 107 bb.msg.note(1, None, ''.join(args))
108
109def warn(*args):
110 bb.msg.warn(1, None, ''.join(args))
105 111
106def error(*args): 112def error(*args):
107 bb.msg.std_error(''.join(args)) 113 bb.msg.error(None, ''.join(args))
108 114
109def fatal(*args): 115def fatal(*args):
110 bb.msg.std_fatal(''.join(args)) 116 bb.msg.fatal(None, ''.join(args))
111 117
112 118
113####################################################################### 119#######################################################################