From f227aeb21b58bd9432771d0da7a422bc803761db Mon Sep 17 00:00:00 2001 From: filip mertens Date: Fri, 30 Dec 2022 09:49:12 +0100 Subject: [PATCH] logs --- libs/remix-core-plugin/src/lib/compiler-content-imports.ts | 1 - libs/remix-url-resolver/src/resolve.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/libs/remix-core-plugin/src/lib/compiler-content-imports.ts b/libs/remix-core-plugin/src/lib/compiler-content-imports.ts index 756530c6bd..756e7dc22b 100644 --- a/libs/remix-core-plugin/src/lib/compiler-content-imports.ts +++ b/libs/remix-core-plugin/src/lib/compiler-content-imports.ts @@ -123,7 +123,6 @@ export class CompilerImports extends Plugin { * @returns {Promise} - string content */ async resolveAndSave (url, targetPath) { - console.log('resolveAndSave', url, targetPath) try { if (targetPath && this.currentRequest) { const canCall = await this.askUserPermission('resolveAndSave', 'This action will update the path ' + targetPath) diff --git a/libs/remix-url-resolver/src/resolve.ts b/libs/remix-url-resolver/src/resolve.ts index 370e58c5b3..e3d9c4cf4b 100644 --- a/libs/remix-url-resolver/src/resolve.ts +++ b/libs/remix-url-resolver/src/resolve.ts @@ -131,7 +131,6 @@ export class RemixURLResolver { // eslint-disable-next-line no-useless-catch try { const req = 'https://unpkg.com/' + url - console.log('AXIOS VERSION', axios.VERSION) const response: AxiosResponse = await axios.get(req, { transformResponse: [] }) return { content: response.data, cleanUrl: url } } catch (e) {