diff --git a/src/webhook.rs b/src/webhook.rs index ce10cd7..2bf4065 100644 --- a/src/webhook.rs +++ b/src/webhook.rs @@ -146,9 +146,9 @@ where } async fn check_hash(body: Bytes, secret: String, signature: Vec) -> Result { - tracing::info!("Checking signature {:02x?}", signature.as_slice()); - tracing::info!("Using secret {:?}", secret); - tracing::info!("and body {}", general_purpose::STANDARD.encode(&body)); + tracing::debug!("Checking signature {:02x?}", signature.as_slice()); + // tracing::info!("Using secret {:?}", secret); + tracing::debug!("and body {}", general_purpose::STANDARD.encode(&body)); let mut mac = HmacSha256::new_from_slice(secret.as_bytes()) .map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()).into_response())?; mac.update(&body);