2010-10-24 09:46:58 +02:00
|
|
|
|
using System;
|
2011-06-18 02:11:12 +02:00
|
|
|
|
using PetaPoco;
|
2010-10-24 09:46:58 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
|
|
|
{
|
2011-06-18 02:11:12 +02:00
|
|
|
|
[TableName("Logs")]
|
|
|
|
|
[PrimaryKey("LogId", autoIncrement = true)]
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public class Log
|
|
|
|
|
{
|
2011-04-06 05:14:43 +02:00
|
|
|
|
|
2011-06-18 02:11:12 +02:00
|
|
|
|
public Int64 LogId { get; protected set; }
|
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public string Message { get; set; }
|
2011-04-06 05:14:43 +02:00
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public DateTime Time { get; set; }
|
2011-04-06 05:14:43 +02:00
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public string Logger { get; set; }
|
|
|
|
|
|
2011-04-22 04:23:31 +02:00
|
|
|
|
public string Method { get; set; }
|
2011-04-06 05:14:43 +02:00
|
|
|
|
|
2011-04-22 04:23:31 +02:00
|
|
|
|
public string Exception { get; set; }
|
2011-04-06 05:14:43 +02:00
|
|
|
|
|
2010-10-24 09:46:58 +02:00
|
|
|
|
public string ExceptionType { get; set; }
|
|
|
|
|
|
2011-04-22 04:23:31 +02:00
|
|
|
|
public String Level { get; set; }
|
2010-10-24 09:46:58 +02:00
|
|
|
|
|
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|