Unverified Commit 2334d98c authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #2190 from ethereum/removeLog

Remove verbose logs
parents 4fd502df ccdfc4f5
...@@ -77,7 +77,6 @@ export class AbstractPanel extends HostPlugin { ...@@ -77,7 +77,6 @@ export class AbstractPanel extends HostPlugin {
* @param {String} name The name of the plugin to display the content * @param {String} name The name of the plugin to display the content
*/ */
showContent (name) { showContent (name) {
console.log('showContent', name, this.active)
if (!this.contents[name]) throw new Error(`Plugin ${name} is not yet activated`) if (!this.contents[name]) throw new Error(`Plugin ${name} is not yet activated`)
// hiding the current view and display the `moduleName` // hiding the current view and display the `moduleName`
if (this.active) { if (this.active) {
......
...@@ -201,9 +201,7 @@ class Terminal extends Plugin { ...@@ -201,9 +201,7 @@ class Terminal extends Plugin {
setInterval(async () => { setInterval(async () => {
try { try {
self._view.pendingTxCount.innerHTML = await self.call('udapp', 'pendingTransactionsCount') self._view.pendingTxCount.innerHTML = await self.call('udapp', 'pendingTransactionsCount')
} catch (err) { } catch (err) {}
console.log('Terminal try to call "udapp".')
}
}, 1000) }, 1000)
function listenOnNetwork (ev) { function listenOnNetwork (ev) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment