Files
Rafael Rivera 5b090917d7 Initial commit
2019-11-18 16:46:08 -08:00

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;
}