Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/Log/LogItem.cs

32 lines
502 B
C#

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;
}
}
}