|
|
|
|
|
by Calzifer
998 days ago
|
|
You can also run arbitrary code at any breakpoint (at least for Java with Eclipse). Want to check the content of a buffered image? Just run ImageIO.write(...) while the application is stopped. Want to check the current working directory? Paths.get(".").toAbsolutePath() Heck you can even add code as breakpoint condition (which does not need to stop at the breakpoint), e.g. for some on the fly print debug. Changing values does not have to be a manual process but can also be injected as breakpoint condition. |
|