diff --git a/src/utils/dataService.ts b/src/utils/dataService.ts index 5cc9e5e..f80e541 100644 --- a/src/utils/dataService.ts +++ b/src/utils/dataService.ts @@ -150,9 +150,6 @@ async function loadRawData(): Promise { console.error('ToolsDataSchema validation errors:'); error.errors.forEach((err, index) => { console.error(`${index + 1}. Path: ${err.path.join('.')}, Error: ${err.message}`); - if (err.input !== undefined) { - console.error(` Received:`, typeof err.input === 'object' ? JSON.stringify(err.input, null, 2) : err.input); - } }); } else { console.error('Non-Zod validation error:', error);