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
6f42efc4
Commit
6f42efc4
authored
Aug 19, 2021
by
aniket-engg
Committed by
Aniket
Aug 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hardhat logs formatting improved
parent
f3cca92f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
blockchain.js
apps/remix-ide/src/blockchain/blockchain.js
+2
-2
No files found.
apps/remix-ide/src/blockchain/blockchain.js
View file @
6f42efc4
...
@@ -501,7 +501,7 @@ class Blockchain extends Plugin {
...
@@ -501,7 +501,7 @@ class Blockchain extends Plugin {
if
(
isVM
)
{
if
(
isVM
)
{
const
hhlogs
=
await
this
.
web3
().
eth
.
getHHLogsForTx
(
txResult
.
transactionHash
)
const
hhlogs
=
await
this
.
web3
().
eth
.
getHHLogsForTx
(
txResult
.
transactionHash
)
if
(
hhlogs
&&
hhlogs
.
length
)
{
if
(
hhlogs
&&
hhlogs
.
length
)
{
let
finalLogs
=
'
console.log:
\
n'
let
finalLogs
=
'
<b>console.log:</b>
\
n'
for
(
const
log
of
hhlogs
)
{
for
(
const
log
of
hhlogs
)
{
let
formattedLog
let
formattedLog
// Hardhat implements the same formatting options that can be found in Node.js' console.log,
// Hardhat implements the same formatting options that can be found in Node.js' console.log,
...
@@ -513,7 +513,7 @@ class Blockchain extends Plugin {
...
@@ -513,7 +513,7 @@ class Blockchain extends Plugin {
}
else
{
}
else
{
formattedLog
=
log
.
join
(
' '
)
formattedLog
=
log
.
join
(
' '
)
}
}
finalLogs
=
finalLogs
+
formattedLog
+
'
\
n'
finalLogs
=
finalLogs
+
' '
+
formattedLog
+
'
\
n'
}
}
this
.
call
(
'terminal'
,
'log'
,
{
type
:
'info'
,
value
:
finalLogs
})
this
.
call
(
'terminal'
,
'log'
,
{
type
:
'info'
,
value
:
finalLogs
})
}
}
...
...
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