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/cb6c8729b1dec73a12d3b232a673d0f6bbe1ad0d/NzbDrone.Core/Instrumentation/Log.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

24 lines
456 B

using System;
using NzbDrone.Core.Datastore;
12 years ago
namespace NzbDrone.Core.Instrumentation
{
public class Log : ModelBase
{
12 years ago
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; }
}
}