Skip to content

Commit e9d3658

Browse files
author
minjk-bl
committed
remove log printing codes
1 parent a369bc3 commit e9d3658

6 files changed

Lines changed: 5 additions & 8 deletions

File tree

src/common/vpFrameEditor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,11 +1219,11 @@ define([
12191219

12201220
FrameEditor.prototype.saveState = function() {
12211221
// if there's anything to save, you can properly save it here.
1222-
console.log('frame', 'saveState', this.state);
1222+
// console.log('frame', 'saveState', this.state);
12231223
}
12241224

12251225
FrameEditor.prototype.loadState = function(state) {
1226-
console.log('frame', 'loadState', state);
1226+
// console.log('frame', 'loadState', state);
12271227
var {
12281228
originObj,
12291229
returnObj,

src/common/vpSubsetEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ define([
11631163
}
11641164

11651165
SubsetEditor.prototype.loadState = function(state) {
1166-
console.log('subset', 'loadState', state)
1166+
// console.log('subset', 'loadState', state)
11671167
var {
11681168
dataType, pandasObject, useCopy, toFrame
11691169
, subsetType

src/file_io/instance.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ define([
377377
if (this.pointer.stack.length > MAX_STACK_SIZE) {
378378
this.pointer.stack.splice(0, 1);
379379
}
380-
console.log('add stack', currentValue, this.pointer.stack);
380+
// console.log('add stack', currentValue, this.pointer.stack);
381381
}
382382

383383
VariablePackage.prototype.popStack = function(replace=true) {
@@ -388,7 +388,7 @@ define([
388388
if (replace) {
389389
this.updateValue('', lastValue);
390390
}
391-
console.log('pop stack', lastValue, this.pointer.stack);
391+
// console.log('pop stack', lastValue, this.pointer.stack);
392392
return lastValue;
393393
}
394394

src/file_io/udf.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,6 @@ define([
291291

292292
// item header click (toggle & select item) & double click (edit title)
293293
$(document).on('click', this.wrapSelector('.vp-sn-item-header'), function(evt) {
294-
console.log('header click ' + that.clicked);
295294
var thisHeader = this;
296295
that.clicked++;
297296
if (that.clicked == 1) {

src/pandas/readFile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ define([
126126
if (this.metadata) {
127127
var fileType = this.getMetadata('fileType');
128128
if (fileType) {
129-
console.log('fileType : '+fileType);
130129
this.selectedFileType = fileType;
131130
this.package = { ...libPandas._PANDAS_FUNCTION[this.fileTypeId[fileType]] };
132131
this.state.fileExtension = this.fileExtensions[fileType];

src/pandas/toFile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ define([
125125
if (this.metadata) {
126126
var fileType = this.getMetadata('fileType');
127127
if (fileType) {
128-
console.log('fileType : '+fileType);
129128
this.selectedFileType = fileType;
130129
this.package = { ...libPandas._PANDAS_FUNCTION[this.fileTypeId[fileType]] };
131130
this.state.fileExtension = this.fileExtensions[fileType];

0 commit comments

Comments
 (0)