Go to the source code of this file.
|
|
Definition at line 65 of file ipmi_log.h. 00066 { 00067 /* General information about something that happens. */ 00068 IPMI_LOG_INFO, 00069 00070 /* An internal error (not reported directly to the user) occurred, 00071 but it's not a big deal, the system can still operate. */ 00072 IPMI_LOG_WARNING, 00073 00074 /* An internal error (not reported directly to the user) occured, 00075 and it will affect the operation of the system. This system 00076 will still operation, but probably in a degraded mode. */ 00077 IPMI_LOG_SEVERE, 00078 00079 /* An internal error occured, and it is dangerous for the system 00080 to keep operating. */ 00081 IPMI_LOG_FATAL, 00082 00083 /* When returning errors to the user, this will often be used to 00084 report the general cause of the error if the cause would be 00085 difficult to determine from just the error return code. */ 00086 IPMI_LOG_ERR_INFO, 00087 00088 /* Debug information is being generated. */ 00089 IPMI_LOG_DEBUG, 00090 00091 /* Sometimes debug information is generated in multiple parts. 00092 These log types mark the first, intermediate, and end of a 00093 multi-part log. These will all be generated together from the 00094 same thread. */ 00095 IPMI_LOG_DEBUG_START, 00096 IPMI_LOG_DEBUG_CONT, 00097 IPMI_LOG_DEBUG_END, 00098 };
|