(message: unknown)
| 69 | } |
| 70 | |
| 71 | private error(message: unknown) { |
| 72 | if (this.logLevel <= LogLevel.ERROR) { |
| 73 | console.error(`[ERROR]: ${message}`); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | public connect = () => { |
| 78 | this.debug('Connecting to socket'); |
no outgoing calls
no test coverage detected