From e98e4766f731a0dbdf78935847ada160d72b8d8a Mon Sep 17 00:00:00 2001 From: Bond-009 Date: Thu, 24 Oct 2019 10:27:35 +0200 Subject: [PATCH] Merge pull request #1933 from cvium/autoreload_log_config Reload logging.json on changes (cherry picked from commit da7ba822b0516ad4e179e26f05943cafeaac2139) Signed-off-by: Joshua Boniface --- Jellyfin.Server/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs index 6f1c111c6d..e0f10ef659 100644 --- a/Jellyfin.Server/Program.cs +++ b/Jellyfin.Server/Program.cs @@ -370,7 +370,7 @@ namespace Jellyfin.Server return new ConfigurationBuilder() .SetBasePath(appPaths.ConfigurationDirectoryPath) - .AddJsonFile("logging.json") + .AddJsonFile("logging.json", false, true) .AddEnvironmentVariables("JELLYFIN_") .AddInMemoryCollection(ConfigurationOptions.Configuration) .Build();