diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index a84039f585..2a8771dc28 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py @@ -480,7 +480,8 @@ class ThreadedWorker(Thread): try: func(self, *args, **kargs) except Exception as e: - print(e) + # Eat all exceptions + bb.mainlogger.debug("Worker task raised %s" % e, exc_info=e) finally: self.tasks.task_done()