using System; using System.Diagnostics; using log4net.Core; namespace Aitex.Core.RT.Log { internal 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; } } }