1 #ifndef ___SECGSI_TRACE_H___
2 #define ___SECGSI_TRACE_H___
37 #define QTRACE(act) (gsiTrace && (gsiTrace->What & TRACE_ ## act))
38 #define PRINT(y) {if (gsiTrace) {gsiTrace->Beg(epname); \
39 cerr <<y; gsiTrace->End();}}
40 #define TRACE(act,x) if (QTRACE(act)) PRINT(x)
41 #define NOTIFY(y) TRACE(Debug,y)
42 #define DEBUG(y) TRACE(Authen,y)
43 #define EPNAME(x) static const char *epname = x;
56 #define TRACE_ALL 0x000f
57 #define TRACE_Dump 0x0004
58 #define TRACE_Authen 0x0002
59 #define TRACE_Debug 0x0001
Definition: XrdOucTrace.hh:35