Engauge Digitizer  2
Priority.hh
Go to the documentation of this file.
1 #ifndef PRIORITY_HH
2 #define PRIORITY_HH
3 
4 namespace log4cpp {
5 
7  class Priority {
8  public:
10  typedef enum {
11  EMERG = 0,
12  FATAL = 0,
13  ALERT = 100,
14  CRIT = 200,
15  ERROR = 300,
16  WARN = 400,
17  NOTICE = 500,
18  INFO = 600,
19  DEBUG = 700,
20  NOTSET = 800
21  } PriorityLevel;
22 
24  typedef int Value;
25  };
26 }
27 
28 #endif // PRIORITY_HH
PriorityLevel
Enum for debug levels.
Definition: Priority.hh:10
int Value
Priority level.
Definition: Priority.hh:24
This class provides importance levels for categorizing log messages.
Definition: Priority.hh:7