(run: Run)
| 259 | } |
| 260 | |
| 261 | onChainEnd(run: Run) { |
| 262 | const crumbs = this.getBreadcrumbs(run) |
| 263 | this.logger.verbose( |
| 264 | `[${this.orgId}]: [chain/end] [${crumbs}] [${elapsed(run)}] Exiting Chain run with output: ${tryJsonStringify( |
| 265 | run.outputs, |
| 266 | '[outputs]' |
| 267 | )}` |
| 268 | ) |
| 269 | } |
| 270 | |
| 271 | onChainError(run: Run) { |
| 272 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected