DOLFIN
DOLFIN C++ interface
LogLevel.h
1#ifndef __LOGLEVEL_H
2#define __LOGLEVEL_H
3
4namespace dolfin
5{
9 {
10 CRITICAL = 50, // errors that may lead to data corruption and suchlike
11 ERROR = 40, // things that go boom
12 WARNING = 30, // things that may go boom later
13 INFO = 20, // information of general interest
14 PROGRESS = 16, // what's happening (broadly)
15 TRACE = 13, // what's happening (in detail)
16 DBG = 10 // sundry
17 };
18}
19
20#endif
Definition: adapt.h:30
LogLevel
Definition: LogLevel.h:9