Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/56a34b5ea6a1ad401ee4cfe74e1acea54fc02ee5/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;
namespace NzbDrone.Core.Instrumentation
{
public class Log : ModelBase
{
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; }
}
}