mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Fix startup logger log file order
This commit is contained in:
parent
aa24d08d33
commit
3cf213c4fb
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ public sealed class SetupServer : IDisposable
|
|||
|
||||
var logFilePath = new DirectoryInfo(_applicationPaths.LogDirectoryPath)
|
||||
.EnumerateFiles()
|
||||
.OrderBy(f => f.CreationTimeUtc)
|
||||
.OrderByDescending(f => f.CreationTimeUtc)
|
||||
.FirstOrDefault()
|
||||
?.FullName;
|
||||
if (logFilePath is not null)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue