|
|
|
|
|
by mindcrime
503 days ago
|
|
Speaking as a Java guy, remote debugging is SO useful (at times anyway). Thankfully the JVM has built in support for a remote debugging protocol[1] and there are good debuggers that can connect to a running Java system (if it was started with the correct command line flags) and do symbolic debugging over the network. There can be certain situations where the network latency can make things difficult, but generally speaking I find it an incredibly useful facility to have. [1]: https://docs.oracle.com/javase/8/docs/technotes/guides/jpda/... |
|