mirror of
https://github.com/riverar/messageanalyzer-archive
synced 2026-06-08 17:10:57 +00:00
14 lines
295 B
Plaintext
14 lines
295 B
Plaintext
message EventLogEntry with
|
|
EntryInfo { Regex = @"(?<Component>[^\x20]*) (?<LevelString>[^:]*): (?<Level>[^:]*) : (?<ClientRequestId>[^:]*): (?<Description>.*)"
|
|
, Priority = 1
|
|
}
|
|
: LogEntry
|
|
{
|
|
string Component;
|
|
string LevelString;
|
|
int Level;
|
|
string ClientRequestId;
|
|
string Description;
|
|
}
|
|
|