From 242f25adb59f4a1c84bccbf73d7beb5de232e816 Mon Sep 17 00:00:00 2001 From: Sebastian Pravda Date: Thu, 12 Jan 2023 18:35:17 +0100 Subject: [PATCH] fix: private key logging --- core/src/services/application_service.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/services/application_service.rs b/core/src/services/application_service.rs index 752973a..63b62ea 100644 --- a/core/src/services/application_service.rs +++ b/core/src/services/application_service.rs @@ -44,8 +44,6 @@ impl ApplicationService { db: &DbConn, candidate: candidate::Model, ) -> Result { - println!("Decrypting all details: privkey: {}", private_key); - let parents = Query::find_candidate_parents(db, &candidate).await?; let enc_details = EncryptedApplicationDetails::from((&candidate, parents));