From 43e7cf64803da764d8bdd3ce693af360109ff23d Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Thu, 30 Mar 2023 11:57:44 +0100 Subject: [PATCH] remove console log --- apps/remix-ide/src/app/plugins/solidity-umlgen.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx b/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx index 8f5ef1e155..76d99c3c86 100644 --- a/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx +++ b/apps/remix-ide/src/app/plugins/solidity-umlgen.tsx @@ -78,7 +78,6 @@ export class SolidityUmlGen extends ViewPlugin implements ISolidityUmlGen { this.themeName = currentTheme.name let result = '' try { - console.log({ data }) if (data.sources && Object.keys(data.sources).length > 1) { // we should flatten first as there are multiple asts result = await this.flattenContract(source, file, data) }