Is there a way to easily see where I am in code down the the line number without throwing an exception? That is, I have a circumstance in which it is useful to see what file or line number a print statement was at, but don't want to throw an exception (or worse, hard code a magic number for each print).
E.g.
doSomething();
System.out.println("The statement at line " + currentLineNumber + " finished.";