#include <Lat.h>
Public Types | |
| enum | EDebugFlagBits { kCtorDtor = 0x01, kDebug = 0x02, kInfo = 0x04, kWarning = 0x08, kError = 0x10 } |
Static Public Member Functions | |
| UInt_t | GetDebugFlags () |
| void | SetDebugFlags (const UInt_t dbgflgs) |
| void | SetLogLevel (int level) |
Static Private Attributes | |
| UInt_t | fgDebugFlgs = 0 |
|
|
Definition at line 27 of file Lat.h. 00027 { kCtorDtor = 0x01, // ctor and dtor
00028 kDebug = 0x02, // debug
00029 kInfo = 0x04, // information
00030 kWarning = 0x08, // warning
00031 kError = 0x10 // errors
00032 };
|
|
|
Definition at line 39 of file Lat.h. 00039 { return fgDebugFlgs; }
|
|
|
Definition at line 42 of file Lat.h. 00043 {fgDebugFlgs = dbgflgs;}
|
|
|
Definition at line 31 of file Lat.cxx. References MsgService::GetStream(), MsgService::Instance(), and MsgStream::SetLogLevel(). Referenced by main(). 00031 {
00032 MsgService::Instance()->GetStream("Lat")->SetLogLevel(level);
00033 }
|
|
|
|
1.3.9.1