Explorar el Código

updated logger to avoid logging arrays

bubble
Tony Tam hace 10 años
padre
commit
fbe5278928
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/main/javascript/doc.js

+ 1
- 1
src/main/javascript/doc.js Ver fichero

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


Cargando…
Cancelar
Guardar