From f0ae0d879488f661bda7271d79327dde1660da2e Mon Sep 17 00:00:00 2001 From: Bastiaan Date: Sun, 11 Jan 2026 12:18:19 +0100 Subject: [PATCH] fix: log response --- pkgs/@strootje/more/mod.api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/@strootje/more/mod.api.ts b/pkgs/@strootje/more/mod.api.ts index 09245bb..1990301 100644 --- a/pkgs/@strootje/more/mod.api.ts +++ b/pkgs/@strootje/more/mod.api.ts @@ -30,6 +30,7 @@ export const reqres = ( ) => { return async (input: SS.InferInput): Promise> => { const result = await func(validateSync(schema.req, input)); + console.log("test", result); return validateSync(schema.res, await result.json()); }; }; -- 2.51.2