namespace Nop.Core.Domain.Logging; /// /// Represents a log level /// public enum LogLevel { /// /// Debug /// Debug = 10, /// /// Information /// Information = 20, /// /// Warning /// Warning = 30, /// /// Error /// Error = 40, /// /// Fatal /// Fatal = 50 }