(...args: any[])
| 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; |
| 171 | } |
| 172 | return output('log', this.bizName)(args); |
| 173 | } |
| 174 | info(...args: any[]): void { |
| 175 | if (!shouldOutput('info', this.targetLevel, this.bizName, this.targetBizName)) { |
| 176 | return; |
nothing calls this directly
no test coverage detected