Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
esterlus committed Jul 16, 2024
1 parent 8b50d1f commit c112e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function scheduleRemoveExpired(state: State) {
const logH = Math.floor(next / 1000 / 60 / 60);
const logM = Math.round(next / 1000 / 60) - logH * 60;

log.info('scheduling next removeExpired in %dh%dm', logH, logM);
log.info('scheduling next remove expired requests in %dh%dm', logH, logM);
setTimeout(() => removeExpired(state), next);
}

Expand Down

0 comments on commit c112e73

Please sign in to comment.