Skip to content

Commit a13dcc0

Browse files
authored
Merge pull request #4971 from stacks-network/chore/add-unblock-log
Add unblock log
2 parents 2e0c984 + c03704c commit a13dcc0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

stackslib/src/chainstate/nakamoto/coordinator/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ impl<
758758
match self.handle_new_nakamoto_burnchain_block() {
759759
Ok(can_proceed) => {
760760
if !can_proceed {
761-
error!("Missing canonical anchor block",);
761+
error!("Missing canonical anchor block");
762762
}
763763
}
764764
Err(e) => {

stackslib/src/chainstate/stacks/miner.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ pub fn signal_mining_blocked(miner_status: Arc<Mutex<MinerStatus>>) {
133133

134134
/// resume mining if we blocked it earlier
135135
pub fn signal_mining_ready(miner_status: Arc<Mutex<MinerStatus>>) {
136+
debug!("Signaling miner to resume"; "thread_id" => ?std::thread::current().id());
136137
match miner_status.lock() {
137138
Ok(mut status) => {
138139
status.remove_blocked();

0 commit comments

Comments
 (0)