summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-01-11 21:58:02 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-01-11 21:58:02 +0900
commit6af85a86913a0bc7f0b59b54a555b53dc4410175 (patch)
tree791a8c57eda7bb05c4958882877380fce926d19b
parentb07ca524ec2c24575425b58ff96416bd92e38ba0 (diff)
downloadbuildstream-6af85a86913a0bc7f0b59b54a555b53dc4410175.tar.gz
_message.py: Remove MessageType.ERROR, we have no need for this.
-rw-r--r--buildstream/_message.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/buildstream/_message.py b/buildstream/_message.py
index 6119d84a3..48b38b732 100644
--- a/buildstream/_message.py
+++ b/buildstream/_message.py
@@ -28,7 +28,6 @@ class MessageType():
STATUS = "status" # Status message, verbose details
INFO = "info" # Informative messages
WARN = "warning" # Warning messages
- ERROR = "error" # Error messages
LOG = "log" # Messages for log files _only_, never in the frontend
BUG = "bug" # An unhandled exception was raised in a plugin
@@ -43,7 +42,6 @@ class MessageType():
unconditional_messages = [
MessageType.INFO,
MessageType.WARN,
- MessageType.ERROR,
MessageType.FAIL,
MessageType.BUG
]