aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-10-26 18:42:17 -0600
committerCody Robibero <cody@robibe.ro>2021-10-26 18:42:17 -0600
commita6357f89abb40deaa84ed0ea52010c098e769e62 (patch)
treee2697de1b14d3901a0e3d6263c2533f244345c09 /Jellyfin.Server/Program.cs
parentf78f1e834ce1907157d4d43cf8564cf40d05fb9f (diff)
Add ability to upload entire file
Diffstat (limited to 'Jellyfin.Server/Program.cs')
-rw-r--r--Jellyfin.Server/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index 778e53cf6..2f8986da8 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -607,7 +607,7 @@ namespace Jellyfin.Server
"ClientName",
(clientName, wt)
=> wt.File(
- Path.Combine(appPaths.LogDirectoryPath, clientName + "_.log"),
+ Path.Combine(appPaths.LogDirectoryPath, "log_" + clientName + "_.log"),
rollingInterval: RollingInterval.Day,
outputTemplate: "{Message:l}{NewLine}{Exception}",
encoding: Encoding.UTF8))
@@ -632,7 +632,7 @@ namespace Jellyfin.Server
"ClientName",
(clientName, wt)
=> wt.File(
- Path.Combine(appPaths.LogDirectoryPath, clientName + "_.log"),
+ Path.Combine(appPaths.LogDirectoryPath, "log_" + clientName + "_.log"),
rollingInterval: RollingInterval.Day,
outputTemplate: "{Message:l}{NewLine}{Exception}",
encoding: Encoding.UTF8))