//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Diagnostics { using System.Diagnostics; using System; /// /// Specifies what messages to output for debugging /// and tracing. /// public enum TraceLevel { /// /// /// Output no tracing and debugging /// messages. /// /// Off = 0, /// /// /// Output error-handling messages. /// /// Error = 1, /// /// /// Output warnings and error-handling /// messages. /// /// Warning = 2, /// /// /// Output informational messages, warnings, and error-handling messages. /// /// Info = 3, /// /// Output all debugging and tracing messages. /// Verbose = 4, } }