// strmini.h
typedef enum {
DebugLevelFatal,
DebugLevelError,
DebugLevelWarning,
DebugLevelInfo,
DebugLevelTrace,
DebugLevelVerbose,
DebugLevelMaximum
} STREAM_DEBUG_LEVEL;
View the official Windows Driver Kit DDI referenceNo description available.
The STREAM_DEBUG_LEVEL enumeration lists incrementally increasing levels of debugger output.
DebugLevelFatalDisplay only information about nonrecoverable system failure.
DebugLevelErrorDisplay information about serious but recoverable error.
DebugLevelWarningDisplay warnings
DebugLevelInfoDisplay status information. System must remain responsive.
DebugLevelTraceDisplay trace information. System need not remain responsive
DebugLevelVerboseDisplay verbose trace information. System need not remain responsive.
DebugLevelMaximumDisplay maximum information.