Make logging more specific

This commit is contained in:
Skylar Ittner 2021-06-16 16:22:48 -06:00
parent a2a0d6024d
commit a5401a8384

View File

@ -272,7 +272,7 @@ function sendMatrixNotice(roomid, body, callback) {
* @returns {undefined} * @returns {undefined}
*/ */
function sendSMS(number, from, body, callback) { function sendSMS(number, from, body, callback) {
logger.info("Sending SMS to " + number); logger.info("Sending SMS to " + number + " from " + from);
const data = JSON.stringify({ const data = JSON.stringify({
to: [number], to: [number],
from: from, from: from,