2.2.2.3.4 TRACE_LEVEL
The TRACE_LEVEL enumeration specifies the level of traces the Management Server posts to the Management Client (see section 3.3.6.1).
-
typedef enum { TRACE_NONE = 0x00000000, TRACE_ERRORS = 0x00000001, TRACE_WARNINGS = 0x00000002, TRACE_INFORMATION = 0x00000003, TRACE_ALL = 0x00000004 } TRACE_LEVEL;
TRACE_NONE: This level indicates that no event MUST be traced.
TRACE_ERRORS: This level indicates that only events with a TRACE_SEVERITY_LEVEL of ERROR (0x00000001) MUST be traced.
TRACE_WARNINGS: This level indicates that only events with a TRACE_SEVERITY_LEVEL of ERROR (0x00000001) or WARNING (0x00000002) MUST be traced.
TRACE_INFORMATION: This level indicates that only events with a TRACE_SEVERITY_LEVEL of ERROR (0x00000001), WARNING (0x00000002), or INFORMATION (0x00000004) MUST be traced.
TRACE_ALL: This level indicates that all events MUST be traced.