Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/511e365ccb457d17e5c8d19cedc705440696546e/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; }
}
}