(run: Run)
| 48 | // logging methods |
| 49 | |
| 50 | onChainStart(run: Run) { |
| 51 | const crumbs = this.getBreadcrumbs(run) |
| 52 | this.logger.verbose( |
| 53 | `[${this.orgId}]: [chain/start] [${crumbs}] Entering Chain run with input: ${tryJsonStringify(run.inputs, '[inputs]')}` |
| 54 | ) |
| 55 | } |
| 56 | |
| 57 | onChainEnd(run: Run) { |
| 58 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected