aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-10-23 19:52:12 +0200
committerClaus Vium <clausvium@gmail.com>2019-10-23 19:52:12 +0200
commitc3eac58dda0b7cd185cb3ebd04284bbf3b9c0ebd (patch)
tree341f2c4ca9aae785bbd0fe281ef2563ca1fc3cc3 /Jellyfin.Server/Program.cs
parent91600b1c81872e1745401942633a87085dc706b5 (diff)
Reload logging.json on changes
Diffstat (limited to 'Jellyfin.Server/Program.cs')
-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 3ab19769a..e8bd0cd30 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -376,7 +376,7 @@ namespace Jellyfin.Server
return new ConfigurationBuilder()
.SetBasePath(appPaths.ConfigurationDirectoryPath)
- .AddJsonFile("logging.json")
+ .AddJsonFile("logging.json", false, true)
.AddEnvironmentVariables("JELLYFIN_")
.AddInMemoryCollection(ConfigurationOptions.Configuration)
.Build();