An enumeration of levels at which the runtime library can provide runtime information about tracing facilities.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
The default trace level is usually TraceWarnings. When you're debugging misconfigurations, you will definitely want to go to TraceInfo because at that level the runtime reports its configuration arguments before attempting to load the JVM or connect to a server.
| Member Name | Description | Value |
|---|---|---|
| TraceDisabled | Disable a trace facility totally. | 0 |
| TraceErrors | Only trace severe errors for the facility. | 1 |
| TraceError | Only trace severe errors for the facility. | 1 |
| TraceWarnings | Only trace warnings or severe errors for the facility. This is the default level for all trace facilities. | 2 |
| TraceInfo | Trace informative messages, warnings, and severe errors for the facility. | 3 |
| TraceFinest | Trace all messages for the facility. | 4 |
| TraceVerbose | Trace all messages for the facility. | 4 |
| TraceUnconditional | Bypasses the applicability check. | 5 |
Namespace: Codemesh.JuggerNET
Assembly: netrt (in netrt.dll)