1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using System;
6 using System.ComponentModel;
7 
8 namespace System.Diagnostics
9 {
10     [Flags]
11     public enum SourceLevels
12     {
13         Off = 0,
14         Critical = 0x01,
15         Error = 0x03,
16         Warning = 0x07,
17         Information = 0x0F,
18         Verbose = 0x1F,
19 
20         [EditorBrowsable(EditorBrowsableState.Advanced)]
21         ActivityTracing = 0xFF00,
22         All = unchecked((int)0xFFFFFFFF),
23     }
24 }
25 
26