| 123456789101112131415161718192021222324252627282930 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;using log4net.Core;namespace Aitex.Core.RT.Log{    struct LogItem    {        public string msg;        public DateTime dt;        public StackFrame sf;        public Level lv;        public Exception ex;        public string StackFile;        public LogItem(string message, StackFrame stackFrame, Level level, Exception exception, string stackFile)        {            msg = message;            dt = DateTime.Now;            sf = stackFrame;            lv = level;            ex = exception;            StackFile = stackFile;        }    }}
 |