Debug
Debug Library
The debug library is exposed directly in processor's context. The environment variable DEBUG
is also valid here. The library can be accessed in a processor using -
this.debug;
Node Inspect
The node inspect can be toggled by running Dynamo-web with the --inspect
flag or running the npm run debug
command. When Dynamo-web is run in debug mode, the debugger
keyword can be added as breakpoints in processor or library code and execution will be paused at these statements. More about node --inspect
can be found here.