diff --git a/index.js b/index.js index 28da44f..7a57b01 100644 --- a/index.js +++ b/index.js @@ -77,6 +77,8 @@ async function vpnConnect(vpnName) { 'Content-Type': 'application/json', }, }); + console.log(response); + console.log(response.json()); const ip = await response.json(); consoleLog(`[${host}] VPN connection successfully established to ${vpnName} (IP: ${ip.data}).`, 'info'); return 0;