From 464d2cb9289196e247571b398c9b133f0baa9108 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Mon, 26 Apr 2021 18:51:12 +0200 Subject: [PATCH] logging --- src/RemixClient.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/RemixClient.js b/src/RemixClient.js index 1486ef8140..7c82b7afe8 100644 --- a/src/RemixClient.js +++ b/src/RemixClient.js @@ -28,12 +28,10 @@ export class RemixClient extends PluginClient { async init() { const currentTheme = await this.call('theme', 'currentTheme') - console.log('theme', currentTheme) this.web3Modal.updateTheme(currentTheme.quality) this.on('theme', 'themeChanged', (theme) => { this.web3Modal.updateTheme(theme.quality) - console.log('theme', theme) }) } @@ -43,11 +41,10 @@ export class RemixClient extends PluginClient { */ async onConnect() { - console.log("Opening a dialog", this.web3Modal); try { this.provider = await this.web3Modal.connect(); } catch (e) { - console.log("Could not get a wallet connection", e); + console.error("Could not get a wallet connection", e); return; }