Debugging the custom-module

Hi. Would you help me locate the custom-module in chrome developer tools to aid in debugging? Thank you.

You can’t do that currently, the server process that hosts the custom module and the rendering process hosting the interface are distinct processes.

I could enable support for the native node debugger documented here. However, custom modules are run in a very limited context so I’m not sure you’ll get anything more useful than the error messages that are already printed in the server console.

Ok, no worries. More console.logging for me then!

I just found out that the actual custom module filename can be provided in the stacktraces, that might help too. Both these changes should be included in next release.

Great! Thanks for that.