using System;
namespace System.Diagnostics
{
/// Specifies what messages to output for the , and classes.
/// 2
// Token: 0x02000101 RID: 257
public enum TraceLevel
{
/// Output no tracing and debugging messages.
// Token: 0x04000302 RID: 770
Off,
/// Output error-handling messages.
// Token: 0x04000303 RID: 771
Error,
/// Output warnings and error-handling messages.
// Token: 0x04000304 RID: 772
Warning,
/// Output informational messages, warnings, and error-handling messages.
// Token: 0x04000305 RID: 773
Info,
/// Output all debugging and tracing messages.
// Token: 0x04000306 RID: 774
Verbose
}
}