summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/utils.py')
-rw-r--r--meta/lib/oe/utils.py3
1 files changed, 2 insertions, 1 deletions
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):
480 try: 480 try:
481 func(self, *args, **kargs) 481 func(self, *args, **kargs)
482 except Exception as e: 482 except Exception as e:
483 print(e) 483 # Eat all exceptions
484 bb.mainlogger.debug("Worker task raised %s" % e, exc_info=e)
484 finally: 485 finally:
485 self.tasks.task_done() 486 self.tasks.task_done()
486 487