(message: string, properties: Record<string, any> = {})
| 119 | ) {} |
| 120 | |
| 121 | private log(message: string, properties: Record<string, any> = {}) { |
| 122 | if (this.options.verbose) { |
| 123 | console.log(JSON.stringify({ message, ...properties })); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | async connect() { |
| 128 | this.log("Connecting to tunnel", { |
no test coverage detected