We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a7a6cd commit 76d03e2Copy full SHA for 76d03e2
src/router/api/v1/users/stats/index.ts
@@ -23,7 +23,6 @@ export function stats(users: Hono<{ Bindings: Environment }>, services: Services
23
const cacheTarget = `users/${address}/stats`.toLowerCase()
24
if (cache !== 'fresh' || live !== 'true') {
25
const cacheHit = await cacheService.get(cacheTarget)
26
- console.log('cacheHit', cacheHit)
27
if (cacheHit) {
28
return context.json({ ...cacheHit }, 200)
29
}
0 commit comments