diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 57be15a62b..aa939d0443 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1219,8 +1219,8 @@ class RunQueue: | |||
1219 | pass | 1219 | pass |
1220 | self.state = runQueueComplete | 1220 | self.state = runQueueComplete |
1221 | raise | 1221 | raise |
1222 | except: | 1222 | except Exception as err: |
1223 | logger.error("An uncaught exception occured in runqueue, please see the failure below:") | 1223 | logger.exception("An uncaught exception occurred in runqueue") |
1224 | try: | 1224 | try: |
1225 | self.teardown_workers() | 1225 | self.teardown_workers() |
1226 | except: | 1226 | except: |