示例#1
0
        public void Debug(string inClass, string inMethod, string message, LogType type)
        {
            LogData data = new LogData(inClass, inMethod, message, LogType.Debug);

            this.Write(data);
        }
示例#2
0
        public void Error(string inClass, string inMethod, Exception exception)
        {
            LogData data = new LogData(inClass, inMethod, exception);

            this.Write(data);
        }
示例#3
0
        public void Action(string inClass, string inMethod, string message)
        {
            LogData data = new LogData(inClass, inMethod, message, false);

            this.Write(data);
        }
示例#4
0
文件: Log.cs 项目: v1i1/proekt
        public void Debug(string InClass, string InMethod, string Message, enmLogType Type)
        {
            LogData vData = new LogData(InClass, InMethod, Message, enmLogType.Debug);

            Write(vData);
        }
示例#5
0
文件: Log.cs 项目: v1i1/proekt
        public void Error(string InClass, string InMethod, System.Exception exception)
        {
            LogData vData = new LogData(InClass, InMethod, exception);

            Write(vData);
        }
示例#6
0
文件: Log.cs 项目: v1i1/proekt
        public void Action(string InClass, string InMethod, string Message)
        {
            LogData vData = new LogData(InClass, InMethod, Message, false);

            Write(vData);
        }