Defines | |
| #define | FATAL 1 |
| #define | FATAL_WRAP 2 |
| #define | WARNING 3 |
| #define | WARNING_WRAP 4 |
| #define | NORMAL 5 |
| #define | DEBUG 6 |
|
|
Indicates that the specified message is debug information that should only be displayed to the screen when the -D flag is specified. |
|
|
Indicates that the specified error is fatal and will cause the program to immediately stop. Cannot be suppressed. |
|
|
Indicates that the specified error is fatal but that the ERROR prefix to the error message should not be output. Used for an error that needs multiple lines of output. |
|
|
Indicate that the specified message is not an error but some type of necessary output. Suppressed if output_suppressed boolean variable in util.c is set to TRUE. |
|
|
Indicate that the specified error is only a warning that something may be wrong but will not cause the program to immediately terminate. Suppressed if output_suppressed boolean variable in util.c is set to TRUE. |
|
|
Indicates that the specified error is only a warning but that the WARNING prefix should not be output. Used for warning messages that need multiple lines of output. |
1.3.4