java runtime tracing library to replace system.out.println
- by Grzegorz Oledzki
Have you heard of any library which would allow me to set up a tracing for specific methods at runtime?
Instead of adding (and removing) lots of System.out.println in my code (and having to re-compile and re-deploy) I would like to have a magic thing which would print out a line for each call of selected method without any change in the code. This…