Skip to content

Instantly share code, notes, and snippets.

@carlcarl
Created October 19, 2012 16:45
Show Gist options
  • Save carlcarl/3919264 to your computer and use it in GitHub Desktop.
Save carlcarl/3919264 to your computer and use it in GitHub Desktop.
javascript ajax log
console.log = (function(message) {
var original_log = console.log;
return function(message) {
$.post('/log', { message: message });
original_log(message);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment