mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
Fix the debug level check in print_exception
(Bitbake rev: 9cb52edf9198fe6db735abbb61d0c4026c97a8d9) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
c3eae29efa
commit
6f52061844
+1
-1
@@ -60,7 +60,7 @@ def print_exception(exc, value, tb):
|
||||
Print the exception to stderr, only showing the traceback if bitbake
|
||||
debugging is enabled.
|
||||
"""
|
||||
if not bb.msg.debug_level['default']:
|
||||
if not bb.msg.debug_level[bb.msg.domain.Default]:
|
||||
tb = None
|
||||
|
||||
sys.__excepthook__(exc, value, tb)
|
||||
|
||||
Reference in New Issue
Block a user