@tiledesk/tiledesk-tybot-connector 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -117,7 +117,7 @@ class DirReply {
|
|
|
117
117
|
console.error("Error sending reply:", err);
|
|
118
118
|
}
|
|
119
119
|
// if (this.log) {console.log("Reply message sent.");}
|
|
120
|
-
console.log("Reply message sent.", JSON.
|
|
120
|
+
console.log("Reply message sent.", JSON.stringify(message));
|
|
121
121
|
callback();
|
|
122
122
|
});
|
|
123
123
|
}
|
|
@@ -171,7 +171,7 @@ class DirReply {
|
|
|
171
171
|
console.log("Reply: Response for url:", options.url);
|
|
172
172
|
console.log("Reply: Response headers:\n", JSON.stringify(res.headers));
|
|
173
173
|
console.log("Reply: Status:", res.status);
|
|
174
|
-
console.log("Reply: Data:", res.data);
|
|
174
|
+
console.log("Reply: Data:", JSON.stringify(res.data));
|
|
175
175
|
|
|
176
176
|
//console.log("******** Response for url:", res);
|
|
177
177
|
// }
|