utils: show the actual exception in better_exec

(Bitbake rev: a148e6a63c842ac586ac1dddbd9008f93cdea297)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chris Larson 2010-12-22 12:06:54 -07:00 committed by Richard Purdie
parent cd382f9546
commit a17d271db2
1 changed files with 4 additions and 6 deletions

View File

@ -344,16 +344,14 @@ def better_exec(code, context, text, realfile = "<code>"):
if t in [bb.parse.SkipPackage, bb.build.FuncFailed]:
raise
logger.exception("Error executing python function in '%s'", code.co_filename)
# print the Header of the Error Message
logger.error("There was an error when executing a python function in: %s" % code.co_filename)
logger.error("Exception:%s Message:%s" % (t, value))
import traceback
exception = traceback.format_exception_only(t, value)
logger.error('Error executing a python function in %s:\n%s',
realfile, ''.join(exception))
# Strip 'us' from the stack (better_exec call)
tb = tb.tb_next
import traceback
textarray = text.split('\n')
linefailed = traceback.tb_lineno(tb)