aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/ServerSetupApp/SetupServer.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-06-09 04:52:39 +0300
committerGitHub <noreply@github.com>2025-06-08 19:52:39 -0600
commit1e9e4ffda9abe30b71ceb1de2f4c3143805c66a9 (patch)
treec48fe1dd38a35efe225b1423fbcc295436b87f3b /Jellyfin.Server/ServerSetupApp/SetupServer.cs
parentd7faf9a327f506a770afce6709327daf5cc9bc30 (diff)
Rework startup topic handling and reenable output to logging framework (#14243)
Diffstat (limited to 'Jellyfin.Server/ServerSetupApp/SetupServer.cs')
-rw-r--r--Jellyfin.Server/ServerSetupApp/SetupServer.cs17
1 files changed, 3 insertions, 14 deletions
diff --git a/Jellyfin.Server/ServerSetupApp/SetupServer.cs b/Jellyfin.Server/ServerSetupApp/SetupServer.cs
index d88dbee57..6d58e3c4e 100644
--- a/Jellyfin.Server/ServerSetupApp/SetupServer.cs
+++ b/Jellyfin.Server/ServerSetupApp/SetupServer.cs
@@ -71,7 +71,7 @@ public sealed class SetupServer : IDisposable
_configurationManager.RegisterConfiguration<NetworkConfigurationFactory>();
}
- internal static ConcurrentQueue<StartupLogEntry>? LogQueue { get; set; } = new();
+ internal static ConcurrentQueue<StartupLogTopic>? LogQueue { get; set; } = new();
/// <summary>
/// Gets a value indicating whether Startup server is currently running.
@@ -88,12 +88,12 @@ public sealed class SetupServer : IDisposable
_startupUiRenderer = (await ParserOptionsBuilder.New()
.WithTemplate(fileTemplate)
.WithFormatter(
- (StartupLogEntry logEntry, IEnumerable<StartupLogEntry> children) =>
+ (StartupLogTopic logEntry, IEnumerable<StartupLogTopic> children) =>
{
if (children.Any())
{
var maxLevel = logEntry.LogLevel;
- var stack = new Stack<StartupLogEntry>(children);
+ var stack = new Stack<StartupLogTopic>(children);
while (maxLevel != LogLevel.Error && stack.Count > 0 && (logEntry = stack.Pop()) != null) // error is the highest inherted error level.
{
@@ -362,15 +362,4 @@ public sealed class SetupServer : IDisposable
});
}
}
-
- internal class StartupLogEntry
- {
- public LogLevel LogLevel { get; set; }
-
- public string? Content { get; set; }
-
- public DateTimeOffset DateOfCreation { get; set; }
-
- public List<StartupLogEntry> Children { get; set; } = [];
- }
}