summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/toasterui.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-03-02 22:47:38 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-07 17:23:04 +0000
commitf56fa5dfd44c8ee9554670742c05f8392847f0f6 (patch)
tree8c8e58b2ed5e2b927e914650a350da805361a9cb /bitbake/lib/bb/ui/toasterui.py
parenta71d32ac53129e4f039f50fdde9a63026d667188 (diff)
downloadpoky-f56fa5dfd44c8ee9554670742c05f8392847f0f6.tar.gz
bitbake: toasterui: reformat list of events
Reformatted and reordered list of events to make changes easily and see them clearly in the diffs. (Bitbake rev: 42a2d1115f2b23dc063a3172285ca3be73cf70bb) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/toasterui.py')
-rw-r--r--bitbake/lib/bb/ui/toasterui.py36
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
105def main(server, eventHandler, params): 123def 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;