Skip to content

Instantly share code, notes, and snippets.

@nlf
Created February 5, 2014 01:09
Show Gist options
  • Save nlf/8815659 to your computer and use it in GitHub Desktop.
Save nlf/8815659 to your computer and use it in GitHub Desktop.
cache._get = cache.get;
cache.get = function () {
var args = Array.prototype.slice.call(arguments);
var request = args.shift();
request.log(['tags'], 'stuff');
cache._get.apply(this, args);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment