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 b8d3ba239..7a7e0a1cf 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -598,7 +598,7 @@ namespace Jellyfin.Server
"ClientName",
(clientName, wt)
=> wt.File(
- Path.Combine(appPaths.LogDirectoryPath, $"log_{clientName}_.log"),
+ Path.Combine(appPaths.LogDirectoryPath, clientName + "_.log"),
rollingInterval: RollingInterval.Day,
outputTemplate: "{Message:l}{NewLine}{Exception}",
encoding: Encoding.UTF8))
@@ -623,7 +623,7 @@ namespace Jellyfin.Server
"ClientName",
(clientName, wt)
=> wt.File(
- Path.Combine(appPaths.LogDirectoryPath, $"log_{clientName}_.log"),
+ Path.Combine(appPaths.LogDirectoryPath, clientName + "_.log"),
rollingInterval: RollingInterval.Day,
outputTemplate: "{Message:l}{NewLine}{Exception}",
encoding: Encoding.UTF8))