aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2024-03-11 18:41:18 +0100
committerGitHub <noreply@github.com>2024-03-11 18:41:18 +0100
commit9db093b9d9d3a2e07a329781864e9da95b49dfda (patch)
tree1c4ab75a42575dd3d71160c2b07b1fd181aa8798
parent59c36225622f0542b0a5122f04afb3f427d9e427 (diff)
parentb9c93938d92718c54d0968b14d06ac8a3b70a427 (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.cs3
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);
}