16 lines
271 B
C#
16 lines
271 B
C#
namespace EonaCat.LogStack.LogClient
|
|
{
|
|
public enum LogLevel
|
|
{
|
|
Trace = 0,
|
|
Debug = 1,
|
|
Information = 2,
|
|
Warning = 3,
|
|
Error = 4,
|
|
Critical = 5,
|
|
Traffic = 6,
|
|
Security = 7,
|
|
Analytics = 8
|
|
}
|
|
}
|