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