diff --git a/crates/topos-certificate-spammer/src/lib.rs b/crates/topos-certificate-spammer/src/lib.rs index 37d3b7681..3a7835b43 100644 --- a/crates/topos-certificate-spammer/src/lib.rs +++ b/crates/topos-certificate-spammer/src/lib.rs @@ -189,7 +189,7 @@ pub async fn run( args: CertificateSpammerConfig, mut shutdown: mpsc::Receiver>, ) -> Result<(), Error> { - debug!("{:#?}", args); + info!("{:#?}", args); // Is list of nodes is specified in the command line use them otherwise use // config file provided nodes let target_nodes = if args.benchmark { diff --git a/crates/topos/src/components/regtest/mod.rs b/crates/topos/src/components/regtest/mod.rs index b6dbbf92c..f8933f9b2 100644 --- a/crates/topos/src/components/regtest/mod.rs +++ b/crates/topos/src/components/regtest/mod.rs @@ -43,6 +43,8 @@ pub(crate) async fn handle_command( env!("TOPOS_VERSION"), )?; + info!("Verify version of topos_certificate_spammer: 111"); + let (shutdown_sender, shutdown_receiver) = mpsc::channel::>(1); let mut runtime = spawn(topos_certificate_spammer::run(config, shutdown_receiver));