(error, functionName, input, args)
| 149 | } |
| 150 | |
| 151 | logError(error, functionName, input, args) { |
| 152 | console.log( |
| 153 | '%cMAL-Sync', |
| 154 | 'background-color: #8f0000; color: white; padding: 2px 10px; border-radius: 3px;', |
| 155 | error.message, |
| 156 | { |
| 157 | name: this.name, |
| 158 | functionName, |
| 159 | input, |
| 160 | args, |
| 161 | }, |
| 162 | ); |
| 163 | } |
| 164 | } |
no outgoing calls
no test coverage detected