Skip to content

Instantly share code, notes, and snippets.

@ipcjs
Created August 24, 2014 16:13
Show Gist options
  • Save ipcjs/bb3eed9ddd63e61cf808 to your computer and use it in GitHub Desktop.
Save ipcjs/bb3eed9ddd63e61cf808 to your computer and use it in GitHub Desktop.
public static void printCurrentMothedName() {
StackTraceElement stackTrace = Thread.currentThread().getStackTrace()[3];
System.out.println(stackTrace.getClassName().substring(stackTrace.getClassName().lastIndexOf('.') + 1) + "--->" + stackTrace.getMethodName());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment