From 5bf87de136e418e9a2c4032e08de8888a1162974 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 17 Jun 2019 07:29:12 -0700 Subject: [PATCH] Add obvious log message indicating CUDA feature state --- core/src/validator.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/validator.rs b/core/src/validator.rs index 978b176c62..e12d2b4f68 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -82,11 +82,12 @@ impl Validator { entrypoint_info_option: Option<&ContactInfo>, config: &ValidatorConfig, ) -> Self { - info!("creating bank..."); + warn!("CUDA is {}abled", if cfg!(cuda) { "en" } else { "dis" }); let id = keypair.pubkey(); assert_eq!(id, node.info.id); + info!("creating bank..."); let ( bank_forks, bank_forks_info,