(...args: any[])
| 160 | this.targetLevel = targetOptions.level; |
| 161 | } |
| 162 | debug(...args: any[]): void { |
| 163 | if (!shouldOutput('debug', this.targetLevel, this.bizName, this.targetBizName)) { |
| 164 | return; |
| 165 | } |
| 166 | return output('debug', this.bizName)(args); |
| 167 | } |
| 168 | log(...args: any[]): void { |
| 169 | if (!shouldOutput('log', this.targetLevel, this.bizName, this.targetBizName)) { |
| 170 | return; |
nothing calls this directly
no test coverage detected