mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-11 14:24:24 +00:00
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…
x
Reference in New Issue
Block a user