Drop the non-debug traceback suppressor, at this point I think it does more harm than good

(Bitbake rev: 2c66ddc2713061ba31363ea69c24944f4a7cd3a8)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson 2010-06-10 08:05:33 -07:00 committed by Richard Purdie
parent 40d7de8f06
commit 77a6052e39
1 changed files with 0 additions and 13 deletions

View File

@ -55,19 +55,6 @@ class BBConfiguration(object):
self.pkgs_to_build = []
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[bb.msg.domain.Default]:
tb = None
sys.__excepthook__(exc, value, tb)
sys.excepthook = print_exception
_warnings_showwarning = warnings.showwarning
def _showwarning(message, category, filename, lineno, file=None, line=None):
"""Display python warning messages using bb.msg"""