From cd251799a4f5d0d2ab811563227dc638c035d766 Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Sun, 30 Dec 2018 23:31:19 +0100 Subject: [PATCH] Change location of logging.json from to /config --- MediaBrowser.Server.Mono/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.Server.Mono/Program.cs b/MediaBrowser.Server.Mono/Program.cs index cf61b79fe8..b8c29796dc 100644 --- a/MediaBrowser.Server.Mono/Program.cs +++ b/MediaBrowser.Server.Mono/Program.cs @@ -164,7 +164,7 @@ namespace MediaBrowser.Server.Mono } try { - string path = Path.Combine(_appPaths.ProgramDataPath, "logging.json"); + string path = Path.Combine(_appPaths.ConfigurationDirectoryPath, "logging.json"); if (!File.Exists(path)) { @@ -178,7 +178,7 @@ namespace MediaBrowser.Server.Mono } } var configuration = new ConfigurationBuilder() - .SetBasePath(_appPaths.ProgramDataPath) + .SetBasePath(_appPaths.ConfigurationDirectoryPath) .AddJsonFile("logging.json") .AddEnvironmentVariables("JELLYFIN_") .Build();