Skip to content

Commit 32eb645

Browse files
comment out table schema fields and perspective view columns traces for v1.8.0 release (#110)
1 parent 4003133 commit 32eb645

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/views/tableView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ export class TableView {
318318

319319
// infer table shema
320320
this._tableSchema = await table.infer(this._inferDataSize);
321-
console.log('tabular.data.view:tableSchema: columns:', this._tableSchema.fields);
321+
// console.log('tabular.data.view:tableSchema: columns:', this._tableSchema.fields);
322322
statusBar.showColumns(this._tableSchema.fields);
323323
this.saveTableSchema(this._tableSchema);
324324
}

web/scripts/perspective.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function createTableColumns(tableSchema) {
162162
tableColumns.push(field.name);
163163
});
164164
}
165-
console.log('perspective.createTableColumns():columns:', tableColumns);
165+
// console.log('perspective.createTableColumns():columns:', tableColumns);
166166
return tableColumns;
167167
}
168168

0 commit comments

Comments
 (0)