diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2021-02-09 09:50:21 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-10 23:48:16 +0000 |
commit | 75f87db413f3659fee18eff389b7b339b01cce15 (patch) | |
tree | e733135549b516c72c4f34172b6bbf865377fc76 /bitbake/bin | |
parent | 7283a0b3b6ca49d0d2e13593333a580ef10439a8 (diff) | |
download | poky-75f87db413f3659fee18eff389b7b339b01cce15.tar.gz |
bitbake: logging: Make bitbake logger compatible with python logger
The bitbake logger overrode the definition of the debug() logging call
to include a debug level, but this causes problems with code that may
be using standard python logging, since the extra argument is
interpreted differently.
Instead, change the bitbake loggers debug() call to match the python
logger call and add a debug2() and debug3() API to replace calls that
were logging to a different debug level.
[RP: Small fix to ensure bb.debug calls bbdebug()]
(Bitbake rev: f68682a79d83e6399eb403f30a1f113516575f51)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake-worker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-worker b/bitbake/bin/bitbake-worker index 40da7a0c2b..6c37967513 100755 --- a/bitbake/bin/bitbake-worker +++ b/bitbake/bin/bitbake-worker | |||
@@ -169,7 +169,7 @@ def fork_off_task(cfg, data, databuilder, workerdata, fn, task, taskname, taskha | |||
169 | fakedirs = (workerdata["fakerootdirs"][fn] or "").split() | 169 | fakedirs = (workerdata["fakerootdirs"][fn] or "").split() |
170 | for p in fakedirs: | 170 | for p in fakedirs: |
171 | bb.utils.mkdirhier(p) | 171 | bb.utils.mkdirhier(p) |
172 | logger.debug(2, 'Running %s:%s under fakeroot, fakedirs: %s' % | 172 | logger.debug2('Running %s:%s under fakeroot, fakedirs: %s' % |
173 | (fn, taskname, ', '.join(fakedirs))) | 173 | (fn, taskname, ', '.join(fakedirs))) |
174 | else: | 174 | else: |
175 | envvars = (workerdata["fakerootnoenv"][fn] or "").split() | 175 | envvars = (workerdata["fakerootnoenv"][fn] or "").split() |