Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
2334d98c
Unverified
Commit
2334d98c
authored
Jul 16, 2019
by
yann300
Committed by
GitHub
Jul 16, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2190 from ethereum/removeLog
Remove verbose logs
parents
4fd502df
ccdfc4f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
panel.js
src/app/components/panel.js
+0
-1
terminal.js
src/app/panels/terminal.js
+1
-3
No files found.
src/app/components/panel.js
View file @
2334d98c
...
@@ -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
)
{
...
...
src/app/panels/terminal.js
View file @
2334d98c
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment