FACT++  1.0

Severity of a message.

Enumerator
kMessage 

Just a message, usually obsolete.

kInfo 

An info telling something which can be interesting to know.

kWarn 

A warning, things that somehow might result in unexpected or unwanted bahaviour.

kError 

Error, something unexpected happened, but can still be handled by the program.

kAlarm 

Error, something unexpected happened, but needs user intervention (i.e. it needs a signal to the user)

kFatal 

An error which cannot be handled at all happend, the only solution is program termination.

kComment 

A comment which is always printed.

kDebug 

A message used for debugging only.

Definition at line 14 of file MessageImp.h.

15  {
16  kMessage = 10,
17  kInfo = 20,
18  kWarn = 30,
19  kError = 40,
20  kAlarm = 45,
21  kFatal = 50,
22  kComment = 90,
23  kDebug = 99,
24  };
A warning, things that somehow might result in unexpected or unwanted bahaviour.
Definition: MessageImp.h:18
An info telling something which can be interesting to know.
Definition: MessageImp.h:17
Just a message, usually obsolete.
Definition: MessageImp.h:16
A message used for debugging only.
Definition: MessageImp.h:23
Error, something unexpected happened, but can still be handled by the program.
Definition: MessageImp.h:19
A comment which is always printed.
Definition: MessageImp.h:22
Error, something unexpected happened, but needs user intervention (i.e. it needs a signal to the user...
Definition: MessageImp.h:20
An error which cannot be handled at all happend, the only solution is program termination.
Definition: MessageImp.h:21