Files
IBKRTrader/Core/Logging/LogEntry.cs
T
RichardandClaude Opus 4.8 ebeb035e92 Initial commit: IBKRTrader
.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>
2026-07-26 18:19:47 +02:00

11 lines
292 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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
);