From 4651e6cf84fea69c52d88b57f7ccc9a322933d7b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 8 Jul 2006 16:30:02 +0000 Subject: bitbake/lib/bb/__init__.py: bitbake/lib/bb/build.py: bitbake/lib/bb/utils.py: bitbake/lib/bb/shell.py: bitbake/lib/bb/providers.py: bitbake/lib/bb/msg.py: bitbake/bin/bitbake: bitbake/bin/bitdoc: bitbake/classes/base.bbclass: Start an overhaul of the message handling in bitbake: - Introduce a new msg module to replace the existing simple calls. - The msg module adds the conncept of message domains so ultimately we can select which kinds of debug messages we want to see (it uses an Enum class for this) - Add a warn logging level for things the user should really pay attention to as note is a little overloaded at present - Start converting to use the new fuctions --- classes/base.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes/base.bbclass') diff --git a/classes/base.bbclass b/classes/base.bbclass index 1d75964f5..cfb82a41c 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -41,7 +41,7 @@ bbdebug() { exit 1 } - test ${@bb.debug_level} -ge $1 && { + test ${@bb.msg.debug_level} -ge $1 && { shift echo "DEBUG:" $* } -- cgit 1.2.3-korg