From d88034b1291743eae5a48264245cf8cd9ffe746a Mon Sep 17 00:00:00 2001 From: Macsim Date: Sun, 23 Nov 2025 13:40:52 +0300 Subject: [PATCH] removed debug log --- Limoka.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limoka.py b/Limoka.py index cb1fe24..3168f5a 100644 --- a/Limoka.py +++ b/Limoka.py @@ -1385,7 +1385,7 @@ class Limoka(loader.Module): signature = bytes.fromhex(signature_hex) signed_payload = f"{module_path}|{sha256}".encode() public_key.verify(signature, signed_payload) - logger.info(f"Signature verified for {module_path} (sha256={sha256})") + # logger.info(f"Signature verified for {module_path} (sha256={sha256})") except Exception as e: logger.error(f"Signature verification failed for {module_path}: {e}") await utils.answer(message, self.strings["watcher_signature_invalid"])