From e2d84918d615ca7f29073473b173d174dd52c271 Mon Sep 17 00:00:00 2001 From: Lightemerald Date: Sun, 25 Jun 2023 14:27:07 +0200 Subject: [PATCH] test --- index.js | 2 ++ 1 file changed, 2 insertions(+) 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;