From f3fa5d40ad18b9e4efe182339786a2bf1fada1ba Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Thu, 9 Sep 2021 18:10:50 -0700 Subject: [PATCH] Remove log lines for getting lnd external address from squeak core (#1256) --- squeaknode/core/squeak_core.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/squeaknode/core/squeak_core.py b/squeaknode/core/squeak_core.py index b5235fec..260ff844 100644 --- a/squeaknode/core/squeak_core.py +++ b/squeaknode/core/squeak_core.py @@ -193,9 +193,7 @@ class SqueakCore: Optional[LightningAddressHostPort]: The host and port of the lnd node if possible. """ info = self.lightning_client.get_info() - logger.info("Packaging offer with lnd info: {}".format(info)) uris = info.uris - logger.info("Packaging offer with uris: {}".format(uris)) for uri in uris: pubkey, address = uri.split("@") host, port_str = address.split(":")