Skip to content

Commit

Permalink
remove console logs, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
jonchurch committed May 22, 2023
1 parent ebf2fee commit 28aecb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class RequestQueue {
if (this.start) {
// dang, I don't actually have the promise for the request
// this won't be accurate if I can't tell when it's done
console.log(`Queue drained after ${Date.now() - this.start}`)
// console.log(`Queue drained after ${Date.now() - this.start}`)
}
}
execute();
Expand Down Expand Up @@ -148,7 +148,7 @@ class RequestQueue {
this.queue.push(newJob);

if (!this.sending) {
console.log('starting')
// console.log('starting')
this.start = Date.now()
this.sending = true;
this.processQueue();
Expand Down

0 comments on commit 28aecb1

Please sign in to comment.