Go to the documentation of this file.
2 #ifndef ___SECGSI_TRACE_H___
3 #define ___SECGSI_TRACE_H___
18 #define QTRACE(act) (gsiTrace && (gsiTrace->What & TRACE_ ## act))
19 #define PRINT(y) {if (gsiTrace) {gsiTrace->Beg(epname); \
20 cerr <<y; gsiTrace->End();}}
21 #define TRACE(act,x) if (QTRACE(act)) PRINT(x)
22 #define DEBUG(y) TRACE(Debug,y)
23 #define EPNAME(x) static const char *epname = x;
35 #define TRACE_ALL 0x000f
36 #define TRACE_Authenxx 0x0007
37 #define TRACE_Authen 0x0004
38 #define TRACE_Debug 0x0001