(logger: Logger, orgId?: string)
| 216 | } |
| 217 | |
| 218 | constructor(logger: Logger, orgId?: string) { |
| 219 | super() |
| 220 | this.logger = logger |
| 221 | this.orgId = orgId |
| 222 | if (getEnvironmentVariable('DEBUG') === 'true') { |
| 223 | logger.level = getEnvironmentVariable('LOG_LEVEL') ?? 'info' |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | getParents(run: Run) { |
| 228 | const parents: Run[] = [] |
nothing calls this directly
no test coverage detected