Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: add logs to check if the latest version got picked up
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Apr 11, 2024
1 parent 45e6f45 commit 8e777c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/topos-certificate-spammer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ pub async fn run(
args: CertificateSpammerConfig,
mut shutdown: mpsc::Receiver<oneshot::Sender<()>>,
) -> 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 {
Expand Down
2 changes: 2 additions & 0 deletions crates/topos/src/components/regtest/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::<oneshot::Sender<()>>(1);
let mut runtime = spawn(topos_certificate_spammer::run(config, shutdown_receiver));

Expand Down

0 comments on commit 8e777c9

Please sign in to comment.