]> code.ossystems Code Review - openembedded-core.git/commit
Switch bitbake internals to use logging directly rather than bb.msg
authorChris Larson <chris_larson@mentor.com>
Thu, 10 Jun 2010 17:35:31 +0000 (10:35 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 4 Jan 2011 14:46:33 +0000 (14:46 +0000)
commitecc68fa4fbb579e97ea45156e79a293b073697a0
tree6d08682e43476e37ccf48ee14c8d81e208d1c897
parentd3a45c7d41a88d79389fc40eb68816e4939fb6f9
Switch bitbake internals to use logging directly rather than bb.msg

We use a custom Logger subclass for our loggers

This logger provides:
- 'debug' method which accepts a debug level
- 'plain' method which bypasses log formatting
- 'verbose' method which is more detail than info, but less than debug

(Bitbake rev: 3b2c1fe5ca56daebb24073a9dd45723d3efd2a8d)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
28 files changed:
bitbake/bin/bitbake
bitbake/lib/bb/__init__.py
bitbake/lib/bb/build.py
bitbake/lib/bb/cache.py
bitbake/lib/bb/cooker.py
bitbake/lib/bb/data_smart.py
bitbake/lib/bb/fetch/__init__.py
bitbake/lib/bb/fetch/bzr.py
bitbake/lib/bb/fetch/cvs.py
bitbake/lib/bb/fetch/git.py
bitbake/lib/bb/fetch/hg.py
bitbake/lib/bb/fetch/local.py
bitbake/lib/bb/fetch/osc.py
bitbake/lib/bb/fetch/perforce.py
bitbake/lib/bb/fetch/repo.py
bitbake/lib/bb/fetch/svk.py
bitbake/lib/bb/fetch/svn.py
bitbake/lib/bb/fetch/wget.py
bitbake/lib/bb/msg.py
bitbake/lib/bb/parse/__init__.py
bitbake/lib/bb/parse/ast.py
bitbake/lib/bb/parse/parse_py/BBHandler.py
bitbake/lib/bb/parse/parse_py/ConfHandler.py
bitbake/lib/bb/persist_data.py
bitbake/lib/bb/providers.py
bitbake/lib/bb/runqueue.py
bitbake/lib/bb/taskdata.py
bitbake/lib/bb/utils.py