1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/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 06:14:43 +03:00
[SubSonicPrimaryKey]
public int LogId { get; protected set; }
[SubSonicLongString]
public string Message { get; set; }
2011-04-06 06:14:43 +03:00
public DateTime Time { get; set; }
2011-04-06 06:14:43 +03:00
public string Logger { get; set; }
public string Method { get; set; }
2011-04-06 06:14:43 +03:00
[SubSonicNullString]
[SubSonicLongString]
public string Exception { get; set; }
2011-04-06 06:14:43 +03:00
[SubSonicNullString]
public string ExceptionType { get; set; }
public String Level { get; set; }
}
2011-04-10 05:44:01 +03:00
}