using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 日志级别 /// public enum EnumLogLevel { /// /// 跟踪 /// Trace = 10, /// /// 调试 /// Debug = 20, /// /// 信息 /// Information = 30, /// /// 警告 /// Warning = 40, /// /// 错误 /// Error = 50, /// /// 严重 /// Critical = 60 } }