Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/6cc2afc92f183f255c119747ed7af63d33659b49 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added back the log path writing

pull/1551/head
Jamie.Rees 8 years ago
parent 9bcced3cac
commit 6cc2afc92f

@ -55,6 +55,8 @@ namespace Ombi
{
config = new LoggerConfiguration()
.MinimumLevel.Debug()
.WriteTo.RollingFile(Path.Combine(env.ContentRootPath, "Logs", "log-{Date}.txt"))
.WriteTo.SQLite("Ombi.db", "Logs", LogEventLevel.Debug)
.CreateLogger();
}
@ -62,6 +64,8 @@ namespace Ombi
{
config = new LoggerConfiguration()
.MinimumLevel.Debug()
.WriteTo.RollingFile(Path.Combine(StoragePath.StoragePath, "Logs", "log-{Date}.txt"))
.WriteTo.SQLite(Path.Combine(StoragePath.StoragePath, "Ombi.db"), "Logs", LogEventLevel.Debug)
.CreateLogger();
}

Loading…
Cancel
Save