URI: 
       tcomment out convert, add logging statement - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 06b5299b0fe731e4e75555575b7dc3ce90ddd799
   DIR parent a54cb30cf3acd5fab5a58ccdd2d57452b87f2b72
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 17 Jun 2019 16:55:12 +0200
       
       comment out convert, add logging statement
       
       Diffstat:
         M electrum/gui/kivy/Makefile          |       2 +-
         M electrum/lnpeer.py                  |       1 +
       
       2 files changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/gui/kivy/Makefile b/electrum/gui/kivy/Makefile
       t@@ -5,7 +5,7 @@ PYTHON = python3
        .PHONY: theming apk clean
        
        theming:
       -        bash -c 'for i in network lightning; do convert -background none theming/light/$$i.{svg,png}; done'
       +        #bash -c 'for i in network lightning; do convert -background none theming/light/$$i.{svg,png}; done'
                $(PYTHON) -m kivy.atlas theming/light 1024 theming/light/*.png
        prepare:
                # running pre build setup
   DIR diff --git a/electrum/lnpeer.py b/electrum/lnpeer.py
       t@@ -237,6 +237,7 @@ class Peer(Logger):
                            raise Exception('unknown message')
                        if self.gossip_queue.empty():
                            break
       +            self.logger.debug(f'process_gossip {len(chan_anns)} {len(node_anns)} {len(chan_upds)}')
                    # note: data processed in chunks to avoid taking sql lock for too long
                    # channel announcements
                    for chan_anns_chunk in chunks(chan_anns, 300):