From 94fc880fa5cc212cb9104eac4667639fd9d3d699 Mon Sep 17 00:00:00 2001 From: Jonathan Zernik Date: Fri, 27 Aug 2021 05:44:27 -0700 Subject: [PATCH] Change log level of debug line for timeline query (#1075) --- squeaknode/db/squeak_db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/squeaknode/db/squeak_db.py b/squeaknode/db/squeak_db.py index ad1a8766..ffb87b7b 100644 --- a/squeaknode/db/squeak_db.py +++ b/squeaknode/db/squeak_db.py @@ -229,7 +229,7 @@ class SqueakDb: block_height = block_height or MAX_INT squeak_time = squeak_time or MAX_INT squeak_hash = squeak_hash or MAX_HASH - logger.info("""Timeline db query with + logger.debug("""Timeline db query with limit: {} block_height: {} squeak_time: {} @@ -443,7 +443,7 @@ class SqueakDb: logger.debug("Query s: {}".format(s)) with self.get_connection() as connection: - # logger.info("Mogrify lookup_squeaks: {}.".format( + # logger.debug("Mogrify lookup_squeaks: {}.".format( # connection.connection.cursor().mogrify(s), # )) result = connection.execute(s)