mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
17 lines
267 B
C#
17 lines
267 B
C#
namespace Semmle.Util.Logging
|
|
{
|
|
/// <summary>
|
|
/// Log verbosity level.
|
|
/// </summary>
|
|
public enum Verbosity
|
|
{
|
|
Off = 0,
|
|
Error = 1,
|
|
Warning = 2,
|
|
Info = 3,
|
|
Debug = 4,
|
|
Trace = 5,
|
|
All = 6
|
|
}
|
|
}
|