We have some Java code that starts a new process using the following code: Runtime.getRuntime().exec(command);
I'd like to be able to tell the debugger that it should follow the child process like you can do with GDB as documented here by issuing the set follow-fork-mode child
command.
Is there something equivalent in the IntelliJ IDEA Java debugger? If so how do I configure it?
Thanks