diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/ui/toasterui.py | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index 32b1889a65..377526e48c 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py | |||
@@ -92,15 +92,33 @@ def _close_build_log(build_log): | |||
92 | build_log.close() | 92 | build_log.close() |
93 | logger.removeHandler(build_log) | 93 | logger.removeHandler(build_log) |
94 | 94 | ||
95 | _evt_list = [ "bb.runqueue.runQueueExitWait", "bb.event.LogExecTTY", "logging.LogRecord", | 95 | _evt_list = [ |
96 | "bb.build.TaskFailed", "bb.build.TaskBase", "bb.event.ParseStarted", | 96 | "bb.build.TaskBase", |
97 | "bb.event.ParseProgress", "bb.event.ParseCompleted", "bb.event.CacheLoadStarted", | 97 | "bb.build.TaskFailed", |
98 | "bb.event.CacheLoadProgress", "bb.event.CacheLoadCompleted", "bb.command.CommandFailed", | 98 | "bb.build.TaskFailedSilent", |
99 | "bb.command.CommandExit", "bb.command.CommandCompleted", "bb.cooker.CookerExit", | 99 | "bb.build.TaskStarted", |
100 | "bb.event.MultipleProviders", "bb.event.NoProvider", "bb.runqueue.sceneQueueTaskStarted", | 100 | "bb.build.TaskSucceeded", |
101 | "bb.runqueue.runQueueTaskStarted", "bb.runqueue.runQueueTaskFailed", "bb.runqueue.sceneQueueTaskFailed", | 101 | "bb.command.CommandCompleted", |
102 | "bb.event.BuildBase", "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.build.TaskFailedSilent", | 102 | "bb.command.CommandExit", |
103 | "bb.event.MetadataEvent"] | 103 | "bb.command.CommandFailed", |
104 | "bb.cooker.CookerExit", | ||
105 | "bb.event.BuildBase", | ||
106 | "bb.event.CacheLoadCompleted", | ||
107 | "bb.event.CacheLoadProgress", | ||
108 | "bb.event.CacheLoadStarted", | ||
109 | "bb.event.LogExecTTY", | ||
110 | "bb.event.MetadataEvent", | ||
111 | "bb.event.MultipleProviders", | ||
112 | "bb.event.NoProvider", | ||
113 | "bb.event.ParseCompleted", | ||
114 | "bb.event.ParseProgress", | ||
115 | "bb.event.ParseStarted", | ||
116 | "bb.runqueue.runQueueExitWait", | ||
117 | "bb.runqueue.runQueueTaskFailed", | ||
118 | "bb.runqueue.runQueueTaskStarted", | ||
119 | "bb.runqueue.sceneQueueTaskFailed", | ||
120 | "bb.runqueue.sceneQueueTaskStarted", | ||
121 | "logging.LogRecord"] | ||
104 | 122 | ||
105 | def main(server, eventHandler, params): | 123 | def main(server, eventHandler, params): |
106 | # set to a logging.FileHandler instance when a build starts; | 124 | # set to a logging.FileHandler instance when a build starts; |