From bed38e3b2048e20633aa9900af5211065c1f4e37 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:38:48 -0800 Subject: [PATCH] umu_proton: remove digital signature verification logs - These logs aren't interesting and the only time we should care is if it fails --- umu/umu_proton.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/umu/umu_proton.py b/umu/umu_proton.py index 4f93044a..5fa5dfe7 100644 --- a/umu/umu_proton.py +++ b/umu/umu_proton.py @@ -565,7 +565,6 @@ def _get_delta( return None # With the public key, verify the signature and data - log.info("Verifying digital signature of update...") ssh_public_key = ed25519.Ed25519PublicKey.from_public_bytes( cbor.get("public_key") ) @@ -579,11 +578,6 @@ def _get_delta( log.error("Digital signature verification failed, skipping update") return None - log.info( - "Digital signature is OK, verifying %s...", - os.environ["PROTONPATH"], - ) - patcher: CustomPatcher = CustomPatcher( cbor, proton, cache, thread_pool )