Browse Source

updated logger to avoid logging arrays

bubble
Tony Tam 10 years ago
parent
commit
fbe5278928
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/javascript/doc.js

+ 1
- 1
src/main/javascript/doc.js View File

@@ -66,7 +66,7 @@ log = function(){
log.history = log.history || [];
log.history.push(arguments);
if(this.console){
console.log( Array.prototype.slice.call(arguments) );
console.log( Array.prototype.slice.call(arguments)[0] );
}
};


Loading…
Cancel
Save