using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Txgy.EWS.Client.Common.Helpers { public class LogParameter { /// /// 日志等级 /// public enum LogLevelEnum { Debug = 0, Info = 1, Warn = 2, Error = 3, Fatal = 4 } /// /// 当前保存日志等级 /// public static LogLevelEnum LogLevel; /// /// 日志存放路径 /// public static string LogFilePath; /// /// 日志存放天数 /// public static int LogFileExistDay; } }