Skip to content

Instantly share code, notes, and snippets.

@macfire
Created November 9, 2017 14:41
Show Gist options
  • Save macfire/aba3ca1014153c0317fff1e01fce7369 to your computer and use it in GitHub Desktop.
Save macfire/aba3ca1014153c0317fff1e01fce7369 to your computer and use it in GitHub Desktop.
Javascript console helpers
/**
* Short version to window.console.log()
*/
var LOG = LOG || console.log.bind(console);
/**
* Display function caller
* Put at beginning of a function to determine who called the function
*/
// Display function name only
var _caller = arguments.callee.caller.toString().split("{");
LOG("This function called from " + _caller[0]);
// Display full function
var _caller_full = arguments.callee.caller.toString();
LOG("This function called from " + _caller_full);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment