feat(01-05): add Serilog integration tests and App.xaml.cs LogPanelSink comment

- LoggingIntegrationTests: verifies Serilog writes rolling log file with correct content
- LogPanelSink structural smoke test: confirms type implements ILogEventSink
- App.xaml.cs: added comment for LogPanelSink DI registration deferred to plan 01-06
This commit is contained in:
Dev
2026-04-02 12:18:02 +02:00
parent a287ed83ab
commit 1c532d1f6b
2 changed files with 45 additions and 3 deletions

View File

@@ -36,5 +36,7 @@ public partial class App : Application
{
// Placeholder — services registered in subsequent plans
services.AddSingleton<MainWindow>();
// LogPanelSink registered in plan 01-06 after MainWindow is created
// (requires RichTextBox reference from MainWindow)
}
}