Remove debug logging from parseOpenAPIFile function to clean up code and improve performance.

This commit is contained in:
Luke Hagar
2025-09-26 21:15:53 +00:00
parent abd4500e94
commit be86bcf65e

View File

@@ -56,8 +56,6 @@ const vendorExtensions = getVendorExtensions();
* Unified parser that can handle both JSON and YAML OpenAPI files
*/
function parseOpenAPIFile(text: string, options?: any): OpenAPINode {
console.debug('parseOpenAPIFile', text, options);
let format: 'json' | 'yaml' | undefined;
if (options?.filepath) {