fix: private key logging

This commit is contained in:
Sebastian Pravda 2023-01-12 18:35:17 +01:00
parent ac4aa9643f
commit 242f25adb5
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57

View file

@ -44,8 +44,6 @@ impl ApplicationService {
db: &DbConn,
candidate: candidate::Model,
) -> Result<ApplicationDetails, ServiceError> {
println!("Decrypting all details: privkey: {}", private_key);
let parents = Query::find_candidate_parents(db, &candidate).await?;
let enc_details = EncryptedApplicationDetails::from((&candidate, parents));