You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This took me a few hours to sort out, so I thought I would post here and see if a better solution can be implemented.
I was messing around with UNIX domain sockets in my app's root directory. I had an open socket from somewhere else, and when I went to compile my code, it failed with an ambiguous error:
There has been a bug somewhere that has been floating around for some time with the way things are being logged. Of course, once the offending UNIX domain sockets were properly removed things started working again. But issues like #4045 and #4402 (along with my own issue here) would have taken less time to debug if the logs were properly printed.
Anyone know of the source of these [object Object] errors? Seems like someone is passing an object somewhere without using JSON.stringify or something? Or it could be a de-serialization issue. I've seen this sort of behavior in JavaScript before, for example in the browser:
alert({foo: 'bar'})// [object Object]
Being able to see what the object is that is trying to be printed would make it easier to find the root causes for things.
The text was updated successfully, but these errors were encountered:
This took me a few hours to sort out, so I thought I would post here and see if a better solution can be implemented.
I was messing around with UNIX domain sockets in my app's root directory. I had an open socket from somewhere else, and when I went to compile my code, it failed with an ambiguous error:
There has been a bug somewhere that has been floating around for some time with the way things are being logged. Of course, once the offending UNIX domain sockets were properly removed things started working again. But issues like #4045 and #4402 (along with my own issue here) would have taken less time to debug if the logs were properly printed.
Anyone know of the source of these [object Object] errors? Seems like someone is passing an object somewhere without using JSON.stringify or something? Or it could be a de-serialization issue. I've seen this sort of behavior in JavaScript before, for example in the browser:
Being able to see what the object is that is trying to be printed would make it easier to find the root causes for things.
The text was updated successfully, but these errors were encountered: