namespace XGame.Framework.Logger { public enum LogLevel { Debug = 0, Info, Warn, Error, Exception, Event, } public enum LogType : byte { /// 代码日志 Code = 1, /// 埋点日志 Event = 1 << 1, } }