Skip to content

Instantly share code, notes, and snippets.

@zapthedingbat
Created August 19, 2014 12:22
Show Gist options
  • Save zapthedingbat/642f71fa58aafc5db691 to your computer and use it in GitHub Desktop.
Save zapthedingbat/642f71fa58aafc5db691 to your computer and use it in GitHub Desktop.
Log every function call to the console
(function() {
var call = Function.prototype.call;
Function.prototype.call = function() {
console.log(this, arguments);
return call.apply(this, arguments);
};
}());
@FabianoLothor
Copy link

Doesn't work. :/

(function() {
    function hi() {
    }

    var call = Function.prototype.call;
    Function.prototype.call = function() {
        console.log("hi", this, arguments);
        return call.apply(this, arguments);
    };

    hi();
}());

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment