removed print funcs

This commit is contained in:
sanjayk03-dev
2024-04-08 19:38:14 +05:30
parent 89e1cfaf95
commit d1d26565ba

View File

@@ -244,11 +244,7 @@ module.exports = {
var file = this.newGcode;
var file_name =
this.fileName == "default"
? file.trim() != ""
? formattedFilename + ".ngc"
: "default"
: this.fileName;
this.fileName == "default" ? (file.trim() != "" ? formattedFilename + ".ngc" : "default") : this.fileName;
if (file.trim() != "") {
this.upload_gcode(file_name, file);
@@ -441,11 +437,5 @@ module.exports = {
}
this.deleteSelected = false;
},
print_config: function () {
console.log(this.config);
},
print_state: function () {
console.log(this.state);
},
},
};