URI: 
       tdo not print the entire payment log again, this is redundant - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6307e13549486f31ac22e65f1a79b83e8dcba66d
   DIR parent caefea19dd5ffb856b2d11b855e98a68ad517608
  HTML 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:
         M electrum/lnworker.py                |       1 -
       
       1 file changed, 0 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/lnworker.py b/electrum/lnworker.py
       t@@ -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: