From 30e50d0f70bb1d77e50eefee7eba640982e85346 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 13 Jul 2018 22:30:05 -0700 Subject: [PATCH] Log airdrop amount and client public key --- src/drone.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/drone.rs b/src/drone.rs index d8e7736c97..36e0ba653f 100644 --- a/src/drone.rs +++ b/src/drone.rs @@ -112,6 +112,10 @@ impl Drone { airdrop_request_amount, client_public_key, } => { + info!( + "Requesting airdrop of {} to {:?}", + airdrop_request_amount, client_public_key + ); request_amount = airdrop_request_amount; tx = Transaction::new( &self.mint_keypair,