mirror of https://github.com/embarklabs/embark.git
Proxy error message "Error forwarding requests to blockchain/simulator [Object(object)]" was showing in console. Have replace [Object(object)] with `error.message`
This commit is contained in:
parent
2baa6ed792
commit
f5f59bb24b
|
@ -70,7 +70,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) => {
|
||||
|
|
Loading…
Reference in New Issue