Removed debugging code

This commit is contained in:
David Carley
2021-03-02 18:44:13 -08:00
parent d752fd2b76
commit e9330f0684

View File

@@ -519,14 +519,11 @@ module.exports = {
this.showGcodeMessage = true;
let done;
let done = false;
while (!done) {
const toolpath = await api.get(`path/${file}`);
console.log("toolpath progress: ", toolpath.progress);
if (typeof toolpath.progress == 'undefined') {
console.log("done loading toolpath");
done = true;
toolpath.filename = file;
this.toolpath_progress = 1;
@@ -540,7 +537,6 @@ module.exports = {
Vue.set(state, 'path_max_' + axis, bounds.max[axis]);
}
} else {
console.log("Still loading toolpath");
this.toolpath_progress = toolpath.progress;
}
}