aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2021-04-26 17:02:25 -0600
committercrobibero <cody@robibe.ro>2021-04-26 17:02:25 -0600
commitf8cfc55a3678186af642c74d1c7083711c96aa63 (patch)
tree6a15366685723d28f5ceb36324ae14ba5f91d3c3 /Jellyfin.Server/Program.cs
parent1d6224c9c66b31c9df602b4281c870a9c400767c (diff)
Clean client filename generation
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))