mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
242 B
C#
15 lines
242 B
C#
namespace Semmle.Util.Logging
|
|
{
|
|
/// <summary>
|
|
/// The severity of a log message.
|
|
/// </summary>
|
|
public enum Severity
|
|
{
|
|
Trace = 1,
|
|
Debug = 2,
|
|
Info = 3,
|
|
Warning = 4,
|
|
Error = 5
|
|
}
|
|
}
|