aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Helpers
diff options
context:
space:
mode:
authorPeaches_MLG <PeachesMLG100@gmail.com>2024-03-08 15:36:48 +0000
committerPeaches_MLG <PeachesMLG100@gmail.com>2024-03-08 15:36:48 +0000
commitd77aa6c23496ee0de58ba674514469cfad1aa0d9 (patch)
tree1601bf79ce99e38bf665fe83e192447e567d4881 /Jellyfin.Server/Helpers
parenta597f1e41057a209417fc5c94f50aaaf587823ed (diff)
Added logging for where config logs and cache directories are stored
Diffstat (limited to 'Jellyfin.Server/Helpers')
-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..dd991a9e0 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);
}