We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a8a72d commit ecd6ca0Copy full SHA for ecd6ca0
src/routeHandlerBuilder.ts
@@ -210,7 +210,6 @@ export class RouteHandlerBuilder<
210
211
// Validate the body against the provided schema
212
if (this.config.bodySchema) {
213
- console.log('body', body);
214
const bodyResult = this.config.bodySchema.safeParse(body);
215
if (!bodyResult.success) {
216
throw new InternalRouteHandlerError(
0 commit comments