Skip to content

Commit

Permalink
Quiet logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed May 9, 2021
1 parent a407ada commit b8b4c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpc_client_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub fn send_and_confirm_transactions(

let mut still_pending_signatures = HashSet::new();
for (signature, status) in pending_signatures.into_iter().zip(statuses.into_iter()) {
info!("{}: status={:?}", signature, status);
trace!("{}: status={:?}", signature, status);
let completed = if dry_run {
Some(true)
} else if let Some(status) = &status {
Expand All @@ -184,7 +184,7 @@ pub fn send_and_confirm_transactions(
};

if let Some(success) = completed {
warn!("{}: completed. success={}", signature, success);
info!("{}: completed. success={}", signature, success);
if success {
succeeded_transactions.insert(signature);
} else {
Expand Down

0 comments on commit b8b4c4f

Please sign in to comment.