node-chakracore
node-chakracore copied to clipboard
Inspector doesn't report all arguments for console.log
- Version: v8.x (and up)
- Platform: all
- Subsystem: inspector
A call to console.log
can include other parameters beyond the initial message:
console.log("A message", 5);
These additional parameters should also be reported to the inspector client, but they are currently ignored. The issue is that they need to be wrapped up so that the inspector client can interrogate them further. Since this is a larger work item (we don't currently have a non-debugger object wrap function), it hasn't been worked on yet.
/cc @MSLaguana