(...args: any[])
| 184 | } |
| 185 | |
| 186 | debug(...args: any[]) { |
| 187 | if (!shouldOutput('debug', this.targetLevel, this.bizName, this.targetBizName)) { |
| 188 | return |
| 189 | } |
| 190 | return output('debug', this.bizName)(args) |
| 191 | } |
| 192 | |
| 193 | log(...args: any[]) { |
| 194 | if (!shouldOutput('log', this.targetLevel, this.bizName, this.targetBizName)) { |
no test coverage detected