From ccdfc4f5d841cd8b4046b79911e8d805e1ec6a78 Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 16 Jul 2019 10:04:41 +0200 Subject: [PATCH] remove logs --- src/app/components/panel.js | 1 - src/app/panels/terminal.js | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/components/panel.js b/src/app/components/panel.js index fb47adbd92..db3b9b785a 100644 --- a/src/app/components/panel.js +++ b/src/app/components/panel.js @@ -77,7 +77,6 @@ export class AbstractPanel extends HostPlugin { * @param {String} name The name of the plugin to display the content */ showContent (name) { - console.log('showContent', name, this.active) if (!this.contents[name]) throw new Error(`Plugin ${name} is not yet activated`) // hiding the current view and display the `moduleName` if (this.active) { diff --git a/src/app/panels/terminal.js b/src/app/panels/terminal.js index ba8102dd22..ade3113339 100644 --- a/src/app/panels/terminal.js +++ b/src/app/panels/terminal.js @@ -201,9 +201,7 @@ class Terminal extends Plugin { setInterval(async () => { try { self._view.pendingTxCount.innerHTML = await self.call('udapp', 'pendingTransactionsCount') - } catch (err) { - console.log('Terminal try to call "udapp".') - } + } catch (err) {} }, 1000) function listenOnNetwork (ev) {