Replies: 2 comments 1 reply
-
it should not be significant effort to make fatal worse than severe, just switch their order and values. The only issue may be in some of the consuming logic where severe was being filtered earlier, now fatal errors will also get included in the filter. |
Beta Was this translation helpful? Give feedback.
1 reply
-
it is written as a bit flag so that we can use filters like if error>=filterlevel and we will get the result we want... so if you want fatal to be worse than severe you should correct it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
IErrorMessage enumeration is defined like this. Let's display to the user all major, fatal, and severe errors, and write all errors to file.
Question for @HenryGeorgist: is severe meant to be worse than fatal? If I have the choice between a severe illness and a fatal illness, I'm picking severe illness.
Beta Was this translation helpful? Give feedback.
All reactions