mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
added /logs
This commit is contained in:
parent
fc7d4536ac
commit
9160343a51
16 changed files with 231 additions and 16 deletions
16
NzbDrone.Api/Logs/LogResource.cs
Normal file
16
NzbDrone.Api/Logs/LogResource.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using NzbDrone.Api.REST;
|
||||
|
||||
namespace NzbDrone.Api.Logs
|
||||
{
|
||||
public class LogResource : RestResource
|
||||
{
|
||||
public DateTime Time { get; set; }
|
||||
public String Exception { get; set; }
|
||||
public String ExceptionType { get; set; }
|
||||
public String Level { get; set; }
|
||||
public String Logger { get; set; }
|
||||
public String Message { get; set; }
|
||||
public String Method { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue