diff --git a/server/trpc/routers/me/index.ts b/server/trpc/routers/me/index.ts index 4a948e4..cc1d145 100644 --- a/server/trpc/routers/me/index.ts +++ b/server/trpc/routers/me/index.ts @@ -11,7 +11,7 @@ export const meRouter = router({ .meta({ participants: true }) .query(async ({ ctx }) => { if (await userStorage.hasItem(ctx.session.user.id)) { - console.log('cached') + console.log('cached', baseStorage.getMounts()) return await userStorage.getItem(ctx.session.user.id) }