Remove unnecessary logging
This commit is contained in:
parent
817ab04941
commit
964545dd1f
1 changed files with 1 additions and 1 deletions
|
@ -1624,6 +1624,7 @@
|
||||||
|
|
||||||
}).call(this);
|
}).call(this);
|
||||||
|
|
||||||
|
|
||||||
/* ---- ConfigView.coffee ---- */
|
/* ---- ConfigView.coffee ---- */
|
||||||
|
|
||||||
|
|
||||||
|
@ -1949,7 +1950,6 @@
|
||||||
last = i === changed_values.length - 1;
|
last = i === changed_values.length - 1;
|
||||||
value = this.config_storage.deformatValue(item.value, typeof this.config[item.key]["default"]);
|
value = this.config_storage.deformatValue(item.value, typeof this.config[item.key]["default"]);
|
||||||
default_value = this.config_storage.deformatValue(this.config[item.key]["default"], typeof this.config[item.key]["default"]);
|
default_value = this.config_storage.deformatValue(this.config[item.key]["default"], typeof this.config[item.key]["default"]);
|
||||||
this.log("default check:", JSON.stringify(default_value), "==", JSON.stringify(value));
|
|
||||||
value_same_as_default = JSON.stringify(default_value) === JSON.stringify(value);
|
value_same_as_default = JSON.stringify(default_value) === JSON.stringify(value);
|
||||||
if (this.config[item.key].item.valid_pattern && !(typeof (base = this.config[item.key].item).isHidden === "function" ? base.isHidden() : void 0)) {
|
if (this.config[item.key].item.valid_pattern && !(typeof (base = this.config[item.key].item).isHidden === "function" ? base.isHidden() : void 0)) {
|
||||||
match = value.match(this.config[item.key].item.valid_pattern);
|
match = value.match(this.config[item.key].item.valid_pattern);
|
||||||
|
|
Loading…
Reference in a new issue