event parsing and dispatching
Some checks are pending
ContinuousIntegration / macos (push) Waiting to run
ContinuousIntegration / windows (push) Waiting to run
ContinuousIntegration / linux (push) Successful in 22s

This commit is contained in:
2024-06-11 10:37:20 +02:00
parent 70317ab4db
commit 6f6894419a
4 changed files with 176 additions and 13 deletions

View File

@ -8,7 +8,7 @@ int main(void) {
const auto parse_res = log_parse_line(" 442.539 Script @__Factorio-Event-Logger__/logger.lua:65: [RESEARCH CANCELLED] worker-robots-speed");
assert(parse_res.has_value());
assert(parse_res.value().event == "RESEARCH CANCELLED");
assert(parse_res.value().info == "worker-robots-speed");
assert(parse_res.value().params == "worker-robots-speed");
}
{