Skip to content

Commit

Permalink
Merge pull request #1848 from EspressoSystems/increase-dac-logging
Browse files Browse the repository at this point in the history
Increase DAC logging
  • Loading branch information
bfish713 authored Oct 2, 2023
2 parents 05d28c7 + aad8fc5 commit 86c76dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/task-impls/src/consensus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use std::{
};
#[cfg(async_executor_impl = "tokio")]
use tokio::task::JoinHandle;
use tracing::{debug, error, instrument};
use tracing::{debug, error, instrument, info};

/// Error returned by the consensus task
#[derive(Snafu, Debug)]
Expand Down Expand Up @@ -456,13 +456,13 @@ where
}
}
}
debug!(
info!(
"Couldn't find DAC cert in certs, meaning we haven't received it yet for view {:?}",
*proposal.get_view_number(),
);
return false;
}
debug!(
info!(
"Could not vote because we don't have a proposal yet for view {}",
*self.cur_view
);
Expand Down

0 comments on commit 86c76dd

Please sign in to comment.