Delete unused print statements
This commit is contained in:
parent
24bfb4c253
commit
8de79ad7e8
1 changed files with 0 additions and 3 deletions
|
|
@ -186,11 +186,8 @@ export default {
|
||||||
return href;
|
return href;
|
||||||
},
|
},
|
||||||
readProperty: async function() {
|
readProperty: async function() {
|
||||||
console.log(`Reading property ${this.propertyName}`);
|
|
||||||
let response = await axios.get(this.readPropertyUrl);
|
let response = await axios.get(this.readPropertyUrl);
|
||||||
console.log(`Read property ${this.propertyName}`);
|
|
||||||
this.value = response.data;
|
this.value = response.data;
|
||||||
console.log("Read property", this.readPropertyUrl, response.data);
|
|
||||||
return response.data;
|
return response.data;
|
||||||
},
|
},
|
||||||
writeProperty: async function() {
|
writeProperty: async function() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue