remove stacktrace on error polling trade wallet
This commit is contained in:
parent
221a63077c
commit
41290a1f3f
@ -2154,8 +2154,8 @@ public abstract class Trade implements Tradable, Model {
|
|||||||
boolean isWalletConnected = isWalletConnectedToDaemon();
|
boolean isWalletConnected = isWalletConnectedToDaemon();
|
||||||
if (!isWalletConnected) xmrConnectionService.checkConnection(); // check connection if wallet is not connected
|
if (!isWalletConnected) xmrConnectionService.checkConnection(); // check connection if wallet is not connected
|
||||||
if (!isShutDownStarted && wallet != null && isWalletConnected) {
|
if (!isShutDownStarted && wallet != null && isWalletConnected) {
|
||||||
e.printStackTrace();
|
|
||||||
log.warn("Error polling trade wallet for {} {}: {}. Monerod={}", getClass().getSimpleName(), getId(), e.getMessage(), getXmrWalletService().getConnectionService().getConnection());
|
log.warn("Error polling trade wallet for {} {}: {}. Monerod={}", getClass().getSimpleName(), getId(), e.getMessage(), getXmrWalletService().getConnectionService().getConnection());
|
||||||
|
//e.printStackTrace();
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
pollInProgress = false;
|
pollInProgress = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user