19 lines
458 B
C#
19 lines
458 B
C#
namespace EonaCat.LogStack.LogClient
|
|
{
|
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
|
|
|
public enum LogLevel
|
|
{
|
|
Trace = 0,
|
|
Debug = 1,
|
|
Information = 2,
|
|
Warning = 3,
|
|
Error = 4,
|
|
Critical = 5,
|
|
Traffic = 6,
|
|
Security = 7,
|
|
Analytics = 8
|
|
}
|
|
}
|