(...args: any[])
| 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; |
| 189 | } |
| 190 | return output('error', this.bizName)(args); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | export { Logger }; |
nothing calls this directly
no test coverage detected