Currently, to enable remote debugging, we add `--debug` to node.exe command line by (mis)using iisnode/@interceptor to inject it in web.debug.config. While this works, it also disabled the standard interceptor, which is responsible for logging.
Instead, we should use `nodeProcessCommandLine="node.exe --debug"`. We don't have to specify the full path to node.exe, because the right version (the one choosen on the portal) is automatically added to PATH.
Instead, we should use `nodeProcessCommandLine="node.exe --debug"`. We don't have to specify the full path to node.exe, because the right version (the one choosen on the portal) is automatically added to PATH.