From 35e9503b06f4ccc4e21c07e070b27e526ddd5e5f Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Mon, 17 Feb 2025 09:49:18 +0200 Subject: [PATCH] remove extra debug --- mastodon_email_bridge/mastodon_email_bridge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mastodon_email_bridge/mastodon_email_bridge.py b/mastodon_email_bridge/mastodon_email_bridge.py index 93b438d..a55834c 100755 --- a/mastodon_email_bridge/mastodon_email_bridge.py +++ b/mastodon_email_bridge/mastodon_email_bridge.py @@ -109,8 +109,8 @@ class MastodonEmailBridge: for row in rows: if row[0] in self.sent_items: self._log.warning("Duplicate id in database '%s'", row[0]) - else: - self._log.debug("Found sent item with id '%s' (%s)", row[0], type(row[0])) + # else: + # self._log.debug("Found sent item with id '%s' (%s)", row[0], type(row[0])) self.sent_items.append(row[0]) return True