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/5f93cbc83b61b276f424d4a42f97ad35b9cb64c9/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; }
}
}