You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using PetaPoco;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
|
|
|
{
|
|
|
|
|
[TableName("Logs")]
|
|
|
|
|
[PrimaryKey("LogId", autoIncrement = true)]
|
|
|
|
|
public class Log
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public Int64 LogId { get; protected set; }
|
|
|
|
|
|
|
|
|
|
public string Message { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime Time { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Logger { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Method { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Exception { get; set; }
|
|
|
|
|
|
|
|
|
|
public string ExceptionType { get; set; }
|
|
|
|
|
|
|
|
|
|
public String Level { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|