Merge pull request #2190 from ethereum/removeLog

Remove verbose logs
pull/1/head
yann300 5 years ago committed by GitHub
commit 2334d98c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/app/components/panel.js
  2. 4
      src/app/panels/terminal.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) {

@ -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) {

Loading…
Cancel
Save