Marlin  1.17.1
 All Classes Namespaces Functions Variables Enumerations Friends Pages
VerbosityLevels.h
1 #ifndef marlin_VerbosityLevels_h
2 #define marlin_VerbosityLevels_h
3 
4 #include "streamlog/streamlog.h"
5 
6 // import the log level classes into the marlin namespace
7 
8 namespace marlin{
9 
10  using streamlog::DEBUG ;
11  using streamlog::DEBUG0 ;
12  using streamlog::DEBUG1 ;
13  using streamlog::DEBUG2 ;
14  using streamlog::DEBUG3 ;
15  using streamlog::DEBUG4 ;
16  using streamlog::DEBUG5 ;
17  using streamlog::DEBUG6 ;
18  using streamlog::DEBUG7 ;
19  using streamlog::DEBUG8 ;
20  using streamlog::DEBUG9 ;
21  using streamlog::MESSAGE ;
22  using streamlog::MESSAGE0 ;
23  using streamlog::MESSAGE1 ;
24  using streamlog::MESSAGE2 ;
25  using streamlog::MESSAGE3 ;
26  using streamlog::MESSAGE4 ;
27  using streamlog::MESSAGE5 ;
28  using streamlog::MESSAGE6 ;
29  using streamlog::MESSAGE7 ;
30  using streamlog::MESSAGE8 ;
31  using streamlog::MESSAGE9 ;
32  using streamlog::WARNING ;
33  using streamlog::WARNING0 ;
34  using streamlog::WARNING1 ;
35  using streamlog::WARNING2 ;
36  using streamlog::WARNING3 ;
37  using streamlog::WARNING4 ;
38  using streamlog::WARNING5 ;
39  using streamlog::WARNING6 ;
40  using streamlog::WARNING7 ;
41  using streamlog::WARNING8 ;
42  using streamlog::WARNING9 ;
43  using streamlog::ERROR ;
44  using streamlog::ERROR0 ;
45  using streamlog::ERROR1 ;
46  using streamlog::ERROR2 ;
47  using streamlog::ERROR3 ;
48  using streamlog::ERROR4 ;
49  using streamlog::ERROR5 ;
50  using streamlog::ERROR6 ;
51  using streamlog::ERROR7 ;
52  using streamlog::ERROR8 ;
53  using streamlog::ERROR9 ;
54  using streamlog::SILENT ;
55 
56 }
57 
58 #endif
59 
60