Is there a way to get the name of the currently executing method in Java?
|
1
|
|
|
|
|
|
Thread.currentThread().getStackTrace() will usually contain the method you’re calling it from but there are pitfalls.
|
||
|
|
|
a full code would be (to use with with Bombe's caveat in mind):
More in this question. |
||
|
|
