(run: Run)
| 310 | } |
| 311 | |
| 312 | onToolEnd(run: Run) { |
| 313 | const crumbs = this.getBreadcrumbs(run) |
| 314 | this.logger.verbose( |
| 315 | `[${this.orgId}]: [tool/end] [${crumbs}] [${elapsed(run)}] Exiting Tool run with output: "${run.outputs?.output?.trim()}"` |
| 316 | ) |
| 317 | } |
| 318 | |
| 319 | onToolError(run: Run) { |
| 320 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected