(run: Run)
| 106 | } |
| 107 | |
| 108 | onToolEnd(run: Run) { |
| 109 | const crumbs = this.getBreadcrumbs(run) |
| 110 | this.logger.verbose( |
| 111 | `[${this.orgId}]: [tool/end] [${crumbs}] [${elapsed(run)}] Exiting Tool run with output: "${run.outputs?.output?.trim()}"` |
| 112 | ) |
| 113 | } |
| 114 | |
| 115 | onToolError(run: Run) { |
| 116 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected