(...args: any[])
| 178 | return output('info', this.bizName)(args); |
| 179 | } |
| 180 | warn(...args: any[]): void { |
| 181 | if (!shouldOutput('warn', this.targetLevel, this.bizName, this.targetBizName)) { |
| 182 | return; |
| 183 | } |
| 184 | return output('warn', this.bizName)(args); |
| 185 | } |
| 186 | error(...args: any[]): void { |
| 187 | if (!shouldOutput('error', this.targetLevel, this.bizName, this.targetBizName)) { |
| 188 | return; |
nothing calls this directly
no test coverage detected