diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-01-11 21:58:02 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-01-11 21:58:02 +0900 |
commit | 6af85a86913a0bc7f0b59b54a555b53dc4410175 (patch) | |
tree | 791a8c57eda7bb05c4958882877380fce926d19b | |
parent | b07ca524ec2c24575425b58ff96416bd92e38ba0 (diff) | |
download | buildstream-6af85a86913a0bc7f0b59b54a555b53dc4410175.tar.gz |
_message.py: Remove MessageType.ERROR, we have no need for this.
-rw-r--r-- | buildstream/_message.py | 2 |
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 ] |