mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Clean client filename generation
This commit is contained in:
parent
1d6224c9c6
commit
f8cfc55a36
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user