mirror of https://github.com/embarklabs/embark.git
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:
commit
d46ccb28c5
|
@ -68,7 +68,7 @@ exports.serve = function(ipc, host, port, ws){
|
||||||
});
|
});
|
||||||
|
|
||||||
proxy.on('error', function (e) {
|
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) => {
|
proxy.on('proxyRes', (proxyRes) => {
|
||||||
|
|
Loading…
Reference in New Issue