10 lines
115 B
C#
10 lines
115 B
C#
namespace Alma.Logging;
|
|
|
|
public enum LogLevel
|
|
{
|
|
Critical,
|
|
Error,
|
|
Information,
|
|
Debug,
|
|
Trace
|
|
} |