1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 02:52:41 +01:00
Radarr/NzbDrone.Core/Instrumentation/Log.cs

30 lines
644 B
C#
Raw Normal View History

using System;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Instrumentation
{
public class Log
{
2011-04-06 05:14:43 +02:00
[SubSonicPrimaryKey]
public int LogId { get; protected set; }
[SubSonicLongString]
public string Message { get; set; }
2011-04-06 05:14:43 +02:00
public DateTime Time { get; set; }
2011-04-06 05:14:43 +02:00
public string Logger { get; set; }
public string Method { get; set; }
2011-04-06 05:14:43 +02:00
[SubSonicNullString]
[SubSonicLongString]
public string Exception { get; set; }
2011-04-06 05:14:43 +02:00
[SubSonicNullString]
public string ExceptionType { get; set; }
public String Level { get; set; }
}
2011-04-10 04:44:01 +02:00
}