diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-03-11 18:41:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-11 18:41:18 +0100 |
| commit | 9db093b9d9d3a2e07a329781864e9da95b49dfda (patch) | |
| tree | 1c4ab75a42575dd3d71160c2b07b1fd181aa8798 | |
| parent | 59c36225622f0542b0a5122f04afb3f427d9e427 (diff) | |
| parent | b9c93938d92718c54d0968b14d06ac8a3b70a427 (diff) | |
Merge pull request #11124 from PeachesMLG/directory-path-logging
Added logging for where config logs and cache directories are stored
| -rw-r--r-- | Jellyfin.Server/Helpers/StartupHelpers.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Jellyfin.Server/Helpers/StartupHelpers.cs b/Jellyfin.Server/Helpers/StartupHelpers.cs index 66d393dec..5311a30e4 100644 --- a/Jellyfin.Server/Helpers/StartupHelpers.cs +++ b/Jellyfin.Server/Helpers/StartupHelpers.cs @@ -57,6 +57,9 @@ public static class StartupHelpers logger.LogInformation("User Interactive: {IsUserInteractive}", Environment.UserInteractive); logger.LogInformation("Processor count: {ProcessorCount}", Environment.ProcessorCount); logger.LogInformation("Program data path: {ProgramDataPath}", appPaths.ProgramDataPath); + logger.LogInformation("Log directory path: {LogDirectoryPath}", appPaths.LogDirectoryPath); + logger.LogInformation("Config directory path: {ConfigurationDirectoryPath}", appPaths.ConfigurationDirectoryPath); + logger.LogInformation("Cache path: {CachePath}", appPaths.CachePath); logger.LogInformation("Web resources path: {WebPath}", appPaths.WebPath); logger.LogInformation("Application directory: {ApplicationPath}", appPaths.ProgramSystemPath); } |
