aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-10-24 10:27:35 +0200
committerJoshua Boniface <joshua@boniface.me>2019-10-24 09:38:42 -0400
commite98e4766f731a0dbdf78935847ada160d72b8d8a (patch)
treed70324db99602d2f07ee039fc4d9e687574b2614
parent6e59671cf6e8214406c74bae8aec80a49c6e72b3 (diff)
Merge pull request #1933 from cvium/autoreload_log_config
Reload logging.json on changes (cherry picked from commit da7ba822b0516ad4e179e26f05943cafeaac2139) Signed-off-by: Joshua Boniface <joshua@boniface.me>
-rw-r--r--Jellyfin.Server/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index 6f1c111c6..e0f10ef65 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();