Delete unused print statements

This commit is contained in:
Richard Bowman 2023-11-30 00:20:10 +00:00
parent 24bfb4c253
commit 8de79ad7e8

View file

@ -186,11 +186,8 @@ export default {
return href;
},
readProperty: async function() {
console.log(`Reading property ${this.propertyName}`);
let response = await axios.get(this.readPropertyUrl);
console.log(`Read property ${this.propertyName}`);
this.value = response.data;
console.log("Read property", this.readPropertyUrl, response.data);
return response.data;
},
writeProperty: async function() {