Skip to content

Commit fbe5278

Browse files
committed
updated logger to avoid logging arrays
1 parent b09a8e9 commit fbe5278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/javascript/doc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ log = function(){
6666
log.history = log.history || [];
6767
log.history.push(arguments);
6868
if(this.console){
69-
console.log( Array.prototype.slice.call(arguments) );
69+
console.log( Array.prototype.slice.call(arguments)[0] );
7070
}
7171
};
7272

0 commit comments

Comments
 (0)