using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Core.Domain.Logging { /// /// Represents a log level /// public enum LogLevel { Debug = 10, Information = 20, Warning = 30, Error = 40, Fatal = 50 } }