tlnworker: less verbose - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit db833e1ba351edbb71bdf4be5712a7792305302b
 (DIR) parent c9d403cb7b455d861759989f7ae791c2e8da333d
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 14 Oct 2019 10:42:41 +0200
       
       lnworker: less verbose
       
       Diffstat:
         M electrum/lnworker.py                |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/electrum/lnworker.py b/electrum/lnworker.py
       t@@ -609,7 +609,7 @@ class LNWallet(LNWorker):
                chan = self.channel_by_txo(funding_outpoint)
                if not chan:
                    return
       -        self.logger.debug(f'on_channel_open {funding_outpoint}')
       +        #self.logger.debug(f'on_channel_open {funding_outpoint}')
                self.channel_timestamps[bh2u(chan.channel_id)] = funding_txid, funding_height.height, funding_height.timestamp, None, None, None
                self.storage.put('lightning_channel_timestamps', self.channel_timestamps)
                chan.set_funding_txo_spentness(False)
       t@@ -621,7 +621,7 @@ class LNWallet(LNWorker):
                chan = self.channel_by_txo(funding_outpoint)
                if not chan:
                    return
       -        self.logger.debug(f'on_channel_closed {funding_outpoint}')
       +        #self.logger.debug(f'on_channel_closed {funding_outpoint}')
                self.channel_timestamps[bh2u(chan.channel_id)] = funding_txid, funding_height.height, funding_height.timestamp, closing_txid, closing_height.height, closing_height.timestamp
                self.storage.put('lightning_channel_timestamps', self.channel_timestamps)
                chan.set_funding_txo_spentness(True)