better error message for smith

pull/353/head
nightwing 2016-08-19 23:40:39 +00:00
rodzic 18f7963e2c
commit c04e78432e
1 zmienionych plików z 1 dodań i 1 usunięć

2
node_modules/smith/smith.js wygenerowano vendored
Wyświetl plik

@ -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;
};