.NET WinForms-Anwendung (Core, Modules/CongressTrading, UI). Enthaelt .gitignore und settings.example.json als Konfigurationsvorlage. Echte settings.json mit Zugangsdaten ist bewusst ausgeschlossen. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
292 B
C#
11 lines
292 B
C#
namespace IBKRTrader.Core.Logging;
|
||
|
||
/// <summary>Immutable log entry – wird in Datei und RichTextBox geschrieben.</summary>
|
||
public sealed record LogEntry(
|
||
DateTime Timestamp,
|
||
AppLogLevel Level,
|
||
string Module,
|
||
string Message,
|
||
Exception? Exception = null
|
||
);
|