JuggerNET Runtime Library

TraceLevel Enumeration

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.

[Serializable]
[Flags]
public enum TraceLevel

Remarks

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.

Members

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

Requirements

Namespace: Codemesh.JuggerNET

Assembly: netrt (in netrt.dll)

See Also

Codemesh.JuggerNET Namespace