Skip to content

Commit ecd6ca0

Browse files
committed
fix: Remove console log for body validation in RouteHandlerBuilder
- Deleted the console log statement that printed the body during validation to clean up the code and enhance performance.
1 parent 6a8a72d commit ecd6ca0

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/routeHandlerBuilder.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ export class RouteHandlerBuilder<
210210

211211
// Validate the body against the provided schema
212212
if (this.config.bodySchema) {
213-
console.log('body', body);
214213
const bodyResult = this.config.bodySchema.safeParse(body);
215214
if (!bodyResult.success) {
216215
throw new InternalRouteHandlerError(

0 commit comments

Comments
 (0)