瀏覽代碼

Added logging for where config logs and cache directories are stored

Peaches_MLG 1 年之前
父節點
當前提交
d77aa6c234
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      Jellyfin.Server/Helpers/StartupHelpers.cs

+ 3 - 0
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);
     }