diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-10-24 10:27:35 +0200 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-10-24 09:38:42 -0400 |
| commit | e98e4766f731a0dbdf78935847ada160d72b8d8a (patch) | |
| tree | d70324db99602d2f07ee039fc4d9e687574b2614 | |
| parent | 6e59671cf6e8214406c74bae8aec80a49c6e72b3 (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.cs | 2 |
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(); |
