(message: string, data?: any)
| 99 | } |
| 100 | |
| 101 | warn(message: string, data?: any) { |
| 102 | const component = this.getCallerFile(2) |
| 103 | return this.write("WARN", component, message, data) |
| 104 | } |
| 105 | |
| 106 | error(message: string, data?: any) { |
| 107 | const component = this.getCallerFile(2) |
no test coverage detected