From cce6183865b2051194ab4287346a85691a17ef3d Mon Sep 17 00:00:00 2001 From: sofisl <55454395+sofisl@users.noreply.github.com> Date: Wed, 17 Jul 2024 12:02:37 -0500 Subject: [PATCH] Update download.ts --- src/generator/download.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/generator/download.ts b/src/generator/download.ts index 647c77bd5a..085cb90122 100644 --- a/src/generator/download.ts +++ b/src/generator/download.ts @@ -66,7 +66,6 @@ export async function downloadDiscoveryDocs( : 'json'; console.log(`sending request to ${options.discoveryUrl}`); const res = await request({url: options.discoveryUrl, headers}); - console.log(JSON.parse(res.data as string)); const apis = (JSON.parse(res.data as string)).items as gapi.Schema[]; const indexPath = path.join(options.downloadPath, 'index.json'); gfs.writeFile(indexPath, JSON.parse(res.data as string));