From 8413f0c592974f4949827da8b427e45e93bd6bf9 Mon Sep 17 00:00:00 2001 From: Simon B Date: Sat, 18 Nov 2017 23:56:04 +0100 Subject: [PATCH] Log "nn.nnn coins spent using strategy ..." on log level Debug Aiming for #288 --- src/bin/grin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/grin.rs b/src/bin/grin.rs index ddf3d300ff..915d805d40 100644 --- a/src/bin/grin.rs +++ b/src/bin/grin.rs @@ -435,7 +435,7 @@ fn wallet_command(wallet_args: &ArgMatches) { (selection_strategy == "all"), ); match result { - Ok(_) => {}, //success messaged logged internally + Ok(_) => { debug!(LOGGER, "{} coins sent using strategy {} to {}", amount.to_string(), selection_strategy, dest) }, //success messaged logged internally Err(wallet::Error::NotEnoughFunds(_)) => {}, Err(e) => panic!(e), };