Skip to content

Instantly share code, notes, and snippets.

@Raffo
Last active August 29, 2015 14:19
Show Gist options
  • Save Raffo/0cf3e2727c15159b0f69 to your computer and use it in GitHub Desktop.
Save Raffo/0cf3e2727c15159b0f69 to your computer and use it in GitHub Desktop.
Java

Java Print Method name //This is really dirty, but works, do not use this for production code, just for testing purposes.

public String getCurrentMethodName() {
	StackTraceElement stackTraceElements[] = (new Throwable()).getStackTrace();
	return stackTraceElements[1].toString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment