(message: string)
| 152 | } |
| 153 | |
| 154 | protected logQueue(message: string) { |
| 155 | this.logger.debug( |
| 156 | `(Running: ${this.executing}, Pending: ${this.waiting}) ${message} `, |
| 157 | ); |
| 158 | } |
| 159 | |
| 160 | get executing(): number { |
| 161 | return this.length > this.concurrency ? this.concurrency : this.length; |