diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2006-07-08 16:30:02 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2006-07-08 16:30:02 +0000 |
commit | 4651e6cf84fea69c52d88b57f7ccc9a322933d7b (patch) | |
tree | b9cbe20a8591f2fc1b2d74b807f07429a22bdd5e /classes | |
parent | da652d60033fc735e6d5000fa05c6c8174ab3125 (diff) | |
download | bitbake-4651e6cf84fea69c52d88b57f7ccc9a322933d7b.tar.gz |
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
Diffstat (limited to 'classes')
-rw-r--r-- | classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index 1d75964f..cfb82a41 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:" $* } |