(msg)
| 13 | // Logging functions |
| 14 | const logInfo = (msg) => console.log(`${COLORS.GREEN}✓ ${msg}${COLORS.NC}`); |
| 15 | const logWarn = (msg) => console.log(`${COLORS.YELLOW}⚠ ${msg}${COLORS.NC}`); |
| 16 | const logError = (msg) => console.error(`${COLORS.RED}✗ ${msg}${COLORS.NC}`); |
| 17 | const handleError = (msg) => { |
| 18 | logError(msg); |