mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Ensure log dir exists
This commit is contained in:
parent
9ccc259c99
commit
76d6b1fc2a
@ -130,6 +130,8 @@ namespace Jellyfin.Server
|
||||
string logDir = Environment.GetEnvironmentVariable("JELLYFIN_LOG_DIR");
|
||||
if (string.IsNullOrEmpty(logDir)){
|
||||
logDir = Path.Combine(programDataPath, "logs");
|
||||
// Ensure logDir exists
|
||||
Directory.CreateDirectory(logDir);
|
||||
// $JELLYFIN_LOG_DIR needs to be set for the logger configuration manager
|
||||
Environment.SetEnvironmentVariable("JELLYFIN_LOG_DIR", logDir);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user