Closed phahulin closed 6 years ago
Files with Coverage Reduction | New Missed Lines | % | ||
---|---|---|---|---|
web-dapp/src/components/RegisterAddressPage.js | 39 | 69.96% | ||
<!-- | Total: | 39 | --> |
Totals | |
---|---|
Change from base Build 539: | -0.07% |
Covered Lines: | 1022 |
Relevant Lines: | 1240 |
What is it? (leave one option)
(Improvement)
of existing functionalityWhat was the root cause of the problem originally / what feature was missing? Small improvements to error messages and logging:
On errors, write log both to stdout and stderr, it makes it easier to see time-ordered log in a single file.
In some parts of the code
createResponseObject(ok, err)
is called passing error messages (string) as a second argument, however when logging,err
expected to be an object and error message is expected to be inerr.msg
. This leads toundefined
error messages in logs