* Log a message if debug is enabled * @private
(message: string, ...args: any[])
| 358 | * @private |
| 359 | */ |
| 360 | private log(message: string, ...args: any[]): void { |
| 361 | if (this.debug) { |
| 362 | console.log(`[PGLiteSocketServer] ${message}`, ...args) |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | /** |
| 367 | * Start the socket server |
no outgoing calls