(run: Run)
| 251 | } |
| 252 | |
| 253 | onChainStart(run: Run) { |
| 254 | const crumbs = this.getBreadcrumbs(run) |
| 255 | |
| 256 | this.logger.verbose( |
| 257 | `[${this.orgId}]: [chain/start] [${crumbs}] Entering Chain run with input: ${tryJsonStringify(run.inputs, '[inputs]')}` |
| 258 | ) |
| 259 | } |
| 260 | |
| 261 | onChainEnd(run: Run) { |
| 262 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected