From e84dd102168d1aaf6e0faf19f585f538465a8b78 Mon Sep 17 00:00:00 2001 From: awfuljack Date: Sat, 18 Jun 2016 03:02:01 -0400 Subject: [PATCH] Fixed the logging when tweets go out --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index 045589b..cbd7ff5 100644 --- a/app.js +++ b/app.js @@ -89,7 +89,7 @@ T.post('media/upload', { media_data: b64content }, function (err, data, response var params = {in_reply_to_status_id: nameID, status: '@' + name + " " + randomberniemessage, media_ids: [mediaIdStr] } T.post('statuses/update', params, function (err, data, response) { - console.log("Replied to Bernie's Tweet") + console.log("Replied to Bernie's Tweet with " + randomberniemessage) }) } }) @@ -115,7 +115,7 @@ T.post('media/upload', { media_data: b64content }, function (err, data, response var params = {in_reply_to_status_id: nameID, status: '@' + name + " " randomhulkmessage, media_ids: [mediaIdStr] } T.post('statuses/update', params, function (err, data, response) { - console.log("Replied to Hulk's Tweet") + console.log("Replied to Hulk's Tweet with " + randomhulkmessage) }) } })