Parcourir la source

updated logger to avoid logging arrays

bubble
Tony Tam il y a 10 ans
Parent
révision
fbe5278928
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/main/javascript/doc.js

+ 1
- 1
src/main/javascript/doc.js Voir le fichier

@@ -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] );
}
};


Chargement…
Annuler
Enregistrer