Skip to content

Commit

Permalink
DEBUG: Log if the node is not an attester (#155)
Browse files Browse the repository at this point in the history
## What ❔

Adds more logging around attestations. 

## Why ❔

For some reason on stage2 the main node doesn't seem to have the
attester key, even though it's in the config.
  • Loading branch information
aakoshh committed Jul 13, 2024
1 parent 30a725d commit cf01b6a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions node/actors/executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ impl Executor {
runner.run(ctx).await?;
Ok(())
});
} else {
tracing::info!("Running the node in non-attester mode.");
}

if let Some(debug_config) = self.config.debug_page {
Expand Down

0 comments on commit cf01b6a

Please sign in to comment.