Skip to content

Instantly share code, notes, and snippets.

@edmore
Created January 24, 2012 11:40
Show Gist options
  • Save edmore/1669756 to your computer and use it in GitHub Desktop.
Save edmore/1669756 to your computer and use it in GitHub Desktop.

Revisions

  1. edmore created this gist Jan 24, 2012.
    9 changes: 9 additions & 0 deletions console_wrapper1.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    // usage: log('inside coolFunc',this,arguments);
    // http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
    window.log = function(){
    log.history = log.history || []; // store logs to an array for reference
    log.history.push(arguments);
    if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
    }
    };