Skip to content

Commit

Permalink
fix output message
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariano Goldman committed Feb 27, 2024
1 parent 2095a4e commit 77dc9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/garbage-collect-bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function garbageCollect(components: Pick<AppComponents, 'database'
for await (const key of storage.allFileIds(prefix)) {
allStoredKeys.add(key)
}
console.info(`Done in ${formatSecs(Date.now() - start)} secs. Storage contains ${allStoredKeys.size} keys.`)
console.info(`Done in ${formatSecs(Date.now() - start)}. Storage contains ${allStoredKeys.size} keys.`)
return allStoredKeys
}

Expand Down

0 comments on commit 77dc9be

Please sign in to comment.