From d341d3cbc097956b17ae62c8067992c2fcbeb2e7 Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Sat, 2 Jan 2021 17:04:46 -0800 Subject: [PATCH] Remove old log lines from squeak_d (#544) --- squeaknode/db/squeak_db.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/squeaknode/db/squeak_db.py b/squeaknode/db/squeak_db.py index e20b4510..4a98c4d4 100644 --- a/squeaknode/db/squeak_db.py +++ b/squeaknode/db/squeak_db.py @@ -1040,7 +1040,6 @@ class SqueakDb: yield received_payment def _parse_squeak_entry(self, row): - logger.info("Parsing squeak entry with row: {}".format(row)) if row is None: return None secret_key_column = row["secret_key"] @@ -1056,7 +1055,6 @@ class SqueakDb: parse_block_header( block_header_bytes) if block_header_bytes else None ) - logger.info("Returning squeak entry with squeak: {}".format(squeak)) return SqueakEntry(squeak=squeak, block_header=block_header) def _parse_squeak_profile(self, row):