From c04e78432e73b1dbe1b33c9d02679bc673f36303 Mon Sep 17 00:00:00 2001 From: nightwing Date: Fri, 19 Aug 2016 23:40:39 +0000 Subject: [PATCH] better error message for smith --- node_modules/smith/smith.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_modules/smith/smith.js b/node_modules/smith/smith.js index d0f8d989..b97fe583 100644 --- a/node_modules/smith/smith.js +++ b/node_modules/smith/smith.js @@ -363,7 +363,7 @@ Agent.prototype.send = function (message) { } try { var result = this.transport.send(message); } - catch(e) { console.error("Could not send message: ", e.message ); } + catch(e) { console.error("Agent Smith Could not send message: ", e.stack, e.message); } return result; };