Skip to content

Commit 9e66b57

Browse files
committed
chore: remove excess logging
1 parent 897ebe4 commit 9e66b57

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: src/api/util.ts

-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ export async function doRequest<T>(req: CancelableRequest<Response<T>>): Promise
8888
// console.log('json', await req.json(), (await req.buffer()).length)
8989
const res = await req
9090

91-
console.log('body', res.body)
9291
return {
9392
headers: res.headers,
9493
statusCode: res.statusCode,

Diff for: src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ class SpotifyInstance extends InstanceBase<DeviceConfig> implements SpotifyInsta
230230
if (this.canPollOrPost()) {
231231
await fcn(this, this.config.deviceId || null)
232232
.catch((e) => {
233-
console.log(e)
233+
// console.log(e)
234234
this.log('error', `Execute action failed: ${e.toString()}`)
235235
})
236236
.then(() => {

0 commit comments

Comments
 (0)