(msg: string)
| 6 | } |
| 7 | |
| 8 | public log(msg: string) { |
| 9 | console.log(msg); |
| 10 | this.mainWindow.webContents.send('broadcast', { |
| 11 | event: 'log_show', |
| 12 | data: { |
| 13 | time: new Date().toLocaleTimeString(), |
| 14 | content: msg, |
| 15 | }, |
| 16 | }); |
| 17 | } |
| 18 | |
| 19 | public error(msg: string) { |
| 20 | console.error('[ERROR]', msg); |
no outgoing calls
no test coverage detected