summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/__init__.py
diff options
context:
space:
mode:
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#######################################################################