grandpa: log everything under afg target (#4443)

This commit is contained in:
André Silva
2019-12-18 13:18:29 +00:00
committed by Robert Habermeier
parent 8f1b5b840d
commit 1fc3060feb
5 changed files with 23 additions and 23 deletions
@@ -263,7 +263,7 @@ fn do_import_block<B, C, Block: BlockT<Hash=H256>, J>(
match justification {
Some(justification) => {
trace!(
target: "finality",
target: "afg",
"Imported block {}{}. Importing justification.",
if enacts_consensus_change { " which enacts consensus changes" } else { "" },
hash,
@@ -273,7 +273,7 @@ fn do_import_block<B, C, Block: BlockT<Hash=H256>, J>(
},
None if enacts_consensus_change => {
trace!(
target: "finality",
target: "afg",
"Imported block {} which enacts consensus changes. Requesting finality proof.",
hash,
);
@@ -393,7 +393,7 @@ fn do_import_justification<B, C, Block: BlockT<Hash=H256>, J>(
let justification = match justification {
Err(ClientError::BadJustification(_)) => {
trace!(
target: "finality",
target: "afg",
"Justification for {} is not valid within current authorities set. Requesting finality proof.",
hash,
);
@@ -404,7 +404,7 @@ fn do_import_justification<B, C, Block: BlockT<Hash=H256>, J>(
},
Err(e) => {
trace!(
target: "finality",
target: "afg",
"Justification for {} is not valid. Bailing.",
hash,
);
@@ -413,7 +413,7 @@ fn do_import_justification<B, C, Block: BlockT<Hash=H256>, J>(
},
Ok(justification) => {
trace!(
target: "finality",
target: "afg",
"Justification for {} is valid. Finalizing the block.",
hash,
);
@@ -444,7 +444,7 @@ fn do_finalize_block<B, C, Block: BlockT<Hash=H256>>(
{
// finalize the block
client.finalize_block(BlockId::Hash(hash), Some(justification), true).map_err(|e| {
warn!(target: "finality", "Error applying finality to block {:?}: {:?}", (hash, number), e);
warn!(target: "afg", "Error applying finality to block {:?}: {:?}", (hash, number), e);
ConsensusError::ClientImport(e.to_string())
})?;
@@ -532,8 +532,8 @@ fn require_insert_aux<T: Encode, A: AuxStore>(
/// Display inconsistency warning.
fn on_post_finalization_error(error: ClientError, value_type: &str) -> ConsensusError {
warn!(target: "finality", "Failed to write updated {} to disk. Bailing.", value_type);
warn!(target: "finality", "Node is in a potentially inconsistent state.");
warn!(target: "afg", "Failed to write updated {} to disk. Bailing.", value_type);
warn!(target: "afg", "Node is in a potentially inconsistent state.");
ConsensusError::ClientImport(error.to_string())
}