From 16f686c75723b8bfb1f782c134bedf236d4e11dc Mon Sep 17 00:00:00 2001 From: Oscar Guindzberg Date: Mon, 29 Apr 2019 11:06:47 -0300 Subject: [PATCH] Improve logging --- core/src/main/java/bisq/core/arbitration/DisputeManager.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/main/java/bisq/core/arbitration/DisputeManager.java b/core/src/main/java/bisq/core/arbitration/DisputeManager.java index 3110b5e2f7..38a4b6cd61 100644 --- a/core/src/main/java/bisq/core/arbitration/DisputeManager.java +++ b/core/src/main/java/bisq/core/arbitration/DisputeManager.java @@ -998,9 +998,8 @@ public class DisputeManager implements PersistedDataHost { success = true; } } catch (AddressFormatException | WalletException | TransactionVerificationException e) { - e.printStackTrace(); errorMessage = "Error at traderSignAndFinalizeDisputedPayoutTx " + e.toString(); - log.error(errorMessage); + log.error(errorMessage, e); success = false; throw new RuntimeException(errorMessage); } finally {