mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 07:27:18 +01:00
Add error log to get more information on the actual problem
This commit is contained in:
parent
457257b72a
commit
580387c0b7
1 changed files with 2 additions and 0 deletions
|
@ -788,6 +788,7 @@ public class DisputeSummaryWindow extends Overlay<DisputeSummaryWindow> {
|
|||
}
|
||||
} catch (TradeDataValidation.DisputeReplayException exception) {
|
||||
if (disputeManager instanceof MediationManager) {
|
||||
log.error("Closing of ticket failed as mediator", exception);
|
||||
new Popup().width(900)
|
||||
.warning(exception.getMessage())
|
||||
.onAction(() -> {
|
||||
|
@ -797,6 +798,7 @@ public class DisputeSummaryWindow extends Overlay<DisputeSummaryWindow> {
|
|||
.closeButtonText(Res.get("shared.no"))
|
||||
.show();
|
||||
} else {
|
||||
log.error("Closing of ticket failed", exception);
|
||||
new Popup().width(900)
|
||||
.warning(exception.getMessage())
|
||||
.show();
|
||||
|
|
Loading…
Add table
Reference in a new issue