Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Jul 16, 2019
1 parent b4c2f9d commit ccdfc4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/app/components/panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 1 addition & 3 deletions src/app/panels/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit ccdfc4f

Please sign in to comment.