summaryrefslogtreecommitdiffstats
path: root/bin/bitdoc
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-07-08 16:30:02 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-07-08 16:30:02 +0000
commit4651e6cf84fea69c52d88b57f7ccc9a322933d7b (patch)
treeb9cbe20a8591f2fc1b2d74b807f07429a22bdd5e /bin/bitdoc
parentda652d60033fc735e6d5000fa05c6c8174ab3125 (diff)
downloadbitbake-contrib-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 'bin/bitdoc')
-rwxr-xr-xbin/bitdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitdoc b/bin/bitdoc
index 84d2ee23c..e865e1b99 100755
--- a/bin/bitdoc
+++ b/bin/bitdoc
@@ -442,7 +442,7 @@ Create a set of html pages (documentation) for a bitbake.conf....
options, args = parser.parse_args( sys.argv )
if options.debug:
- bb.debug_level = options.debug
+ bb.msg.set_debug_level(options.debug)
return options.config, options.output