1 #ifndef _XRDPOSIX_TRACE_H
2 #define _XRDPOSIX_TRACE_H
33 #define TRACE_Debug 0x0001
39 #define DMSG(x,y) {XrdPosixGlobals::Trace.Beg(0, x) <<y; \
40 XrdPosixGlobals::Trace.End();}
42 #define DEBUGON (XrdPosixGlobals::Trace.What & TRACE_Debug)
44 #define DEBUG(y) if (XrdPosixGlobals::Trace.What & TRACE_Debug) DMSG(epname,y)
46 #define EPNAME(x) static const char *epname = x
48 namespace XrdPosixGlobals
Definition: XrdSysTrace.hh:45