Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/c2f96791413edf22cdfabc87663048cbc64ead1c/NzbDrone.Core/Instrumentation/Log.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

28 lines
553 B

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; }
}
}