mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-22 08:46:56 -06:00
cleanup console logging
This commit is contained in:
parent
58afb5a171
commit
a49b1bbf17
@ -89,7 +89,7 @@ export default {
|
||||
},
|
||||
afterMenuTransition() {
|
||||
this.drawer = !this.drawer;
|
||||
console.log("drawer now " + (this.drawer ? "true" : "false"))
|
||||
// console.log("drawer now " + (this.drawer ? "true" : "false"))
|
||||
},
|
||||
toggleMenuLocked() {
|
||||
this.$store.dispatch("docs/setIsMenuLocked", !this.$store.getters["docs/getIsMenuLocked"])
|
||||
|
@ -85,7 +85,7 @@ export default {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
console.log("created component...");
|
||||
// console.log("created component...");
|
||||
this.$store.dispatch('workspaces/initWorkspaces', "selector load");
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ export default {
|
||||
return x.path.match(/\/index(.md)?/)
|
||||
});
|
||||
active_topic = found_topic ? found_topic : found_index ? found_index : active_topic;
|
||||
console.log("active_topic=" + active_topic.path);
|
||||
// console.log("active_topic=" + active_topic.path);
|
||||
}
|
||||
return active_topic;
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
||||
},
|
||||
methods: {
|
||||
changeTestVal(data) {
|
||||
console.log("data:" + data);
|
||||
// console.log("data:" + data);
|
||||
this.testval = !this.testval;
|
||||
}
|
||||
}
|
||||
|
@ -111,14 +111,13 @@ export default {
|
||||
return name;
|
||||
},
|
||||
purgeWorkspace: function (ws) {
|
||||
console.log("purging " + ws);
|
||||
// console.log("purging " + ws);
|
||||
this.$store.dispatch('workspaces/purgeWorkspace', ws);
|
||||
// this.$store.dispatch("workspaces/setWorkspace")
|
||||
this.$forceUpdate();
|
||||
},
|
||||
},
|
||||
created() {
|
||||
console.log("created component...");
|
||||
this.$store.dispatch('workspaces/initWorkspaces', "workspace panel load");
|
||||
}
|
||||
}
|
||||
|
@ -75,7 +75,6 @@ export default {
|
||||
},
|
||||
},
|
||||
created() {
|
||||
console.log("created component...");
|
||||
this.$store.dispatch('workspaces/initWorkspaces', "workspace panel load");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user