commit 6307e13549486f31ac22e65f1a79b83e8dcba66d
parent caefea19dd5ffb856b2d11b855e98a68ad517608
Author: ThomasV <thomasv@electrum.org>
Date: Wed, 8 Apr 2020 09:46:16 +0200
do not print the entire payment log again, this is redundant
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/electrum/lnworker.py b/electrum/lnworker.py
@@ -832,7 +832,6 @@ class LNWallet(LNWorker):
self.network.trigger_callback('payment_succeeded', key)
else:
self.network.trigger_callback('payment_failed', key, reason)
- self.logger.debug(f'payment attempts log for RHASH {key}: {repr(log)}')
return success
async def _pay_to_route(self, route: LNPaymentRoute, lnaddr: LnAddr) -> PaymentAttemptLog: