| 593 | {} |
| 594 | |
| 595 | NodeStatus tick() override |
| 596 | { |
| 597 | auto res = getInput<std::string>("log_name"); |
| 598 | if(!res) |
| 599 | { |
| 600 | throw RuntimeError("getInput failed: " + res.error()); |
| 601 | } |
| 602 | result = res.value(); |
| 603 | return NodeStatus::SUCCESS; |
| 604 | } |
| 605 | |
| 606 | static PortsList providedPorts() |
| 607 | { |
nothing calls this directly
no test coverage detected