(message: string)
| 392 | } |
| 393 | |
| 394 | private log(message: string): void { |
| 395 | if (this.config.enableLogging) { |
| 396 | console.log(`[RedisProxy] ${new Date().toISOString()} - ${message}`); |
| 397 | } |
| 398 | } |
| 399 | } |
| 400 | import { createServer } from 'net'; |
| 401 |
no outgoing calls
no test coverage detected