I want to view the lifecycle of a variable throughout my program all at once. I do not want to stop the program with breakpoints. I just want to view the progression of the variable from start to finish all at once.
In general, how can I do this with the Eclipse debugger tool and without hard coding System.out.println(variable); somewhere in the program? Is there a proper way to do this?