summaryrefslogtreecommitdiff
path: root/buildstream/_frontend/widget.py
diff options
context:
space:
mode:
authorJim MacArthur <jim.macarthur@codethink.co.uk>2018-03-07 14:55:54 +0000
committerJim MacArthur <jim.macarthur@codethink.co.uk>2018-03-13 12:03:13 +0000
commitad8bd6f9632aed8ab07a537451fa0479bdae3e31 (patch)
treea261a0888cda246291cddf761defa622f5ca1208 /buildstream/_frontend/widget.py
parent9be5a16c768a0818e2b722585a6d9ab1c72051de (diff)
downloadbuildstream-jmac/remove-sequence-id.tar.gz
Revert "Add sequence ID and widget for it."jmac/remove-sequence-id
This reverts commit 14234ccce3e7eec1153e810fab75afb2e90a2b22.
Diffstat (limited to 'buildstream/_frontend/widget.py')
-rw-r--r--buildstream/_frontend/widget.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/buildstream/_frontend/widget.py b/buildstream/_frontend/widget.py
index 2eb9e10ba..c8c366d99 100644
--- a/buildstream/_frontend/widget.py
+++ b/buildstream/_frontend/widget.py
@@ -284,18 +284,6 @@ class LogFile(Widget):
return text
-class SequenceID(Widget):
- """ A unique Sequence ID is created for each timed_activity, and can
- be used to associate all log lines from a particular
- activity.
- """
- def render(self, message):
- if message.sequence_id is None:
- return self.content_profile.fmt("-")
- else:
- return self.content_profile.fmt(str(message.sequence_id))
-
-
class MessageOrLogFile(Widget):
""" START and SUCCESS messages are expected to have no useful
information in the message text, so we display the logfile name for