From 75306742144eb1bd2d57c986d1f836a59a1f0e8b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 15 Aug 2007 08:39:19 +0000 Subject: bitbake: Sync with upstream 1.8 branch git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2497 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- bitbake/lib/bb/__init__.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'bitbake/lib/bb/__init__.py') diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index 1bfecc49e..585eec887 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py @@ -97,17 +97,23 @@ class MalformedUrl(Exception): ####################################################################### ####################################################################### +def plain(*args): + bb.msg.warn(''.join(args)) + def debug(lvl, *args): - bb.msg.std_debug(lvl, ''.join(args)) + bb.msg.debug(lvl, None, ''.join(args)) def note(*args): - bb.msg.std_note(''.join(args)) + bb.msg.note(1, None, ''.join(args)) + +def warn(*args): + bb.msg.warn(1, None, ''.join(args)) def error(*args): - bb.msg.std_error(''.join(args)) + bb.msg.error(None, ''.join(args)) def fatal(*args): - bb.msg.std_fatal(''.join(args)) + bb.msg.fatal(None, ''.join(args)) ####################################################################### -- cgit v1.2.3