[WIP] User support #82
Labels
an:idea
https://github.com/bisq-network/proposals/issues/182#issuecomment-596599174
re:processes
was:superseded
Problem
When a user creates a support issue, the developer providing support has 2 goals in mind:
Sometimes both goals are achieved by doing just one task, e.g. solving the bug. Sometimes there is a quick workaround for the user but the bug is difficult to reproduce/fix.
Then, there are some other challenges:
e.printStackTrace()
- prints to the console, not the log file.throw new CryptoException("Signature verification failed" + e.getMessage())
- just prints the original message, not the stack trace.Proposals
log.error()
bylog.warn()
for connectivity problems that are not bugs.e.printStackTrace()
bylog.warn("Some text", e)
.throw new SomeException("Some text" + e.getMessage())
bythrow new SomeException("Some text", e)
The text was updated successfully, but these errors were encountered: