diff options
| -rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 78888f8bdd..50dd4229da 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
| @@ -228,7 +228,9 @@ class TerminalFilter(object): | |||
| 228 | 228 | ||
| 229 | def keepAlive(self, t): | 229 | def keepAlive(self, t): |
| 230 | if not self.cuu: | 230 | if not self.cuu: |
| 231 | print("Bitbake still alive (%ds)" % t) | 231 | print("Bitbake still alive (no events for %ds). Active tasks:" % t) |
| 232 | for t in self.helper.running_tasks: | ||
| 233 | print(t) | ||
| 232 | sys.stdout.flush() | 234 | sys.stdout.flush() |
| 233 | 235 | ||
| 234 | def updateFooter(self): | 236 | def updateFooter(self): |
