(run: Run)
| 55 | } |
| 56 | |
| 57 | onChainEnd(run: Run) { |
| 58 | const crumbs = this.getBreadcrumbs(run) |
| 59 | this.logger.verbose( |
| 60 | `[${this.orgId}]: [chain/end] [${crumbs}] [${elapsed(run)}] Exiting Chain run with output: ${tryJsonStringify( |
| 61 | run.outputs, |
| 62 | '[outputs]' |
| 63 | )}` |
| 64 | ) |
| 65 | } |
| 66 | |
| 67 | onChainError(run: Run) { |
| 68 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected