From 8a0e1cba7c622196013d53304e3e26e61e4e2c51 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 24 Oct 2025 21:25:58 -0700 Subject: [PATCH] Update bbstools.py --- modules/bbstools.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/bbstools.py b/modules/bbstools.py index ae752cf..1861e39 100644 --- a/modules/bbstools.py +++ b/modules/bbstools.py @@ -31,7 +31,6 @@ def load_bbsdb(): if all(hash(tuple(existing_msg[1:3])) != msgHash for existing_msg in bbs_messages): new_id = len(bbs_messages) + 1 bbs_messages.append([new_id, msg[1], msg[2], msg[3]]) - logger.info(f"System: Loaded BBS Message ID {new_id}, subject: {msg[1]} from bbsdb.pkl") return True # Loaded successfully, regardless of whether new messages were added return False # File existed but did not contain a valid list of messages (possibly corrupted) except FileNotFoundError: