summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-03-07 22:43:32 +0000
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-03-07 22:43:32 +0000
commitcff8428849928e6a781f4c89b526adbdc962f387 (patch)
tree439300f13e9b1f865c051b9429c148900ccd1131 /src
parent296cb7cc2b1c06282e5c03a92ec7ba46b25cb288 (diff)
debug
Diffstat (limited to 'src')
-rw-r--r--src/sendTextMessage.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sendTextMessage.js b/src/sendTextMessage.js
index 7653d0e..6a1c67a 100644
--- a/src/sendTextMessage.js
+++ b/src/sendTextMessage.js
@@ -1,5 +1,7 @@
const accountSid = process.env.TWILIO_ACCOUNT_SID;
+console.debug(`Account SID: ${accountSid.slice(0,5)}...`);
const authToken = process.env.TWILIO_AUTH_TOKEN;
+console.debug(`Auth token: ${authToken.slice(0,5)}...`);
const client = require('twilio')(accountSid, authToken);
/**