Remove frontend console debug logs

This commit is contained in:
Kevin Thomas
2021-11-12 21:55:26 -08:00
parent a441698999
commit eb3c00d6c1
5 changed files with 12 additions and 52 deletions

View File

@@ -216,9 +216,6 @@ export default {
}
}
})
.catch((error) => {
console.error(error.response)
})
},
addDefaultProfile () {
this.$http.post('/profiles/default')
@@ -229,9 +226,6 @@ export default {
this.selectedProfile = defaultProfile
}
})
.catch((error) => {
console.error(error.response)
})
},
saveProfile () {
this.$http.post('/profiles', {
@@ -259,8 +253,7 @@ export default {
this.infoSnackbar = true
}
})
.catch((error) => {
console.error(error.response)
.catch(() => {
this.errorSnackbarText = 'Error Saving Profile'
this.errorSnackbar = true
})
@@ -288,8 +281,7 @@ export default {
this.infoSnackbar = true
}
})
.catch((error) => {
console.error(error.response)
.catch(() => {
this.errorSnackbarText = 'Error Saving Profile'
this.errorSnackbar = true
})
@@ -318,9 +310,6 @@ export default {
this.loadedSamples = profile.samples
}
})
.catch((error) => {
console.error(error.response)
})
},
deleteProfile () {
this.$http.delete('/profiles/'.concat(this.selectedProfile.id))
@@ -331,8 +320,7 @@ export default {
this.infoSnackbar = true
}
})
.catch((error) => {
console.error(error.response)
.catch(() => {
this.errorSnackbarText = 'Error Deleting Profile'
this.errorSnackbar = true
})
@@ -349,9 +337,6 @@ export default {
})
}
})
.catch((error) => {
console.error(error)
})
},
uploadSample () {
const formData = new FormData()
@@ -374,9 +359,10 @@ export default {
.catch((error) => {
if (error.response.status === 409) {
this.errorSnackbarText = 'Error Uploading Sample: Duplicate Sample Name'
this.errorSnackbar = true
} else {
this.errorSnackbarText = 'Error Uploading Sample'
}
console.error(error.response)
this.errorSnackbar = true
})
this.uploadSampleDialog = false
@@ -406,9 +392,6 @@ export default {
this.$vuetify.theme.dark = response.data.user.darkMode
}
})
.catch((error) => {
console.error(error.response)
})
}
}
}