aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
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))