We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 897ebe4 commit 9e66b57Copy full SHA for 9e66b57
src/api/util.ts
@@ -88,7 +88,6 @@ export async function doRequest<T>(req: CancelableRequest<Response<T>>): Promise
88
// console.log('json', await req.json(), (await req.buffer()).length)
89
const res = await req
90
91
- console.log('body', res.body)
92
return {
93
headers: res.headers,
94
statusCode: res.statusCode,
src/main.ts
@@ -230,7 +230,7 @@ class SpotifyInstance extends InstanceBase<DeviceConfig> implements SpotifyInsta
230
if (this.canPollOrPost()) {
231
await fcn(this, this.config.deviceId || null)
232
.catch((e) => {
233
- console.log(e)
+ // console.log(e)
234
this.log('error', `Execute action failed: ${e.toString()}`)
235
})
236
.then(() => {
0 commit comments