Remove console logs

This commit is contained in:
Cadence Ember 2020-06-19 20:01:43 +12:00
parent 719399f54b
commit e4e190f97e
No known key found for this signature in database
GPG Key ID: 128B99B1B74A6412
1 changed files with 0 additions and 2 deletions

View File

@ -48,12 +48,10 @@ class GMResponse {
}
function gmFetch(url, options = {}) {
console.log("Making request")
return new Promise((resolve, reject) => {
options.url = url
if (!options.method) options.method = "GET"
options.onload = response => {
console.log("Got response", response)
resolve(new GMResponse(response))
}
options.onerror = response => {