remove console log

This commit is contained in:
Henry 2025-07-18 19:17:21 +01:00
parent f73a305584
commit 2435b2b48c
1 changed files with 0 additions and 1 deletions

View File

@ -26,7 +26,6 @@ export class SecureZodSchemaParser {
* @throws Error if the schema is invalid or contains unsafe patterns * @throws Error if the schema is invalid or contains unsafe patterns
*/ */
static parseZodSchema(schemaString: string): z.ZodTypeAny { static parseZodSchema(schemaString: string): z.ZodTypeAny {
console.log('parseZodSchema = ', schemaString)
try { try {
// Remove comments and normalize whitespace // Remove comments and normalize whitespace
const cleanedSchema = this.cleanSchemaString(schemaString) const cleanedSchema = this.cleanSchemaString(schemaString)