Skip to content

Instantly share code, notes, and snippets.

@pschichtel
Created May 28, 2012 21:32
Show Gist options
  • Save pschichtel/2821291 to your computer and use it in GitHub Desktop.
Save pschichtel/2821291 to your computer and use it in GitHub Desktop.
public static String getModuleFromStacktrace()
{
final String className = Thread.currentThread().getStackTrace()[2].getClassName();
return className.substring(0, className.indexOf(".", 0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment