diff --git a/jmclient/jmclient/blockchaininterface.py b/jmclient/jmclient/blockchaininterface.py index a306fc7..3060f2b 100644 --- a/jmclient/jmclient/blockchaininterface.py +++ b/jmclient/jmclient/blockchaininterface.py @@ -342,10 +342,10 @@ class BitcoinCoreInterface(BlockchainInterface): try: txid = self.rpc('sendrawtransaction', [txhex]) except JsonRpcConnectionError as e: - log.debug('error pushing = ' + repr(e)) + log.warning('error pushing = ' + repr(e)) return False except JsonRpcError as e: - log.debug('error pushing = ' + str(e.code) + " " + str(e.message)) + log.warning('error pushing = ' + str(e.code) + " " + str(e.message)) return False return True