stumpless 2.2.0
Loading...
Searching...
No Matches
Severity.hpp
Go to the documentation of this file.
1#ifndef __SEVERITY_HPP
2#define __SEVERITY_HPP
3
4#include <stumpless/severity.h>
5
6namespace stumpless {
7
15 enum class Severity {
19 EMERGENCY = STUMPLESS_SEVERITY_EMERG,
23 ALERT = STUMPLESS_SEVERITY_ALERT,
27 CRITICAL = STUMPLESS_SEVERITY_CRIT,
31 ERR = STUMPLESS_SEVERITY_ERR,
35 WARNING = STUMPLESS_SEVERITY_WARNING,
39 NOTICE = STUMPLESS_SEVERITY_NOTICE,
43 INFO = STUMPLESS_SEVERITY_INFO,
47 DEBUG = STUMPLESS_SEVERITY_DEBUG
48 };
49
50}
51
52#endif /* __SEVERITY_HPP */
Definition AddressFailure.hpp:7
Severity
Severities (as defined in RFC 5424) describe the level of importance of a given log entry.
Definition Severity.hpp:15
@ WARNING
Warning conditions.
@ EMERGENCY
System is unusable.
@ INFO
Informational messages.
@ CRITICAL
Critical conditions.
@ NOTICE
Normal but significant conditions.
@ ERR
Error conditions.
@ DEBUG
Debug-level messages.