Merge pull request #612 from embark-framework/bug_fix/proxy-error-message

Fix proxy error message "Error forwarding requests to blockchain/simulator [Object(object)]"
This commit is contained in:
Iuri Matias 2018-07-09 10:59:38 +03:00 committed by GitHub
commit d46ccb28c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ exports.serve = function(ipc, host, port, ws){
});
proxy.on('error', function (e) {
console.error(__("Error forwarding requests to blockchain/simulator"), e);
console.error(__("Error forwarding requests to blockchain/simulator"), e.message);
});
proxy.on('proxyRes', (proxyRes) => {