Kaynağa Gözat

validator/consensus: log height when appending proposal

skoupidi 6 ay önce
ebeveyn
işleme
142ac78c38
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/validator/consensus.rs

+ 1 - 1
src/validator/consensus.rs

@@ -135,7 +135,7 @@ impl Consensus {
             }
         }
 
-        info!(target: "validator::consensus::append_proposal", "Appended proposal {}", proposal.hash);
+        info!(target: "validator::consensus::append_proposal", "Appended proposal {} - {}", proposal.hash, proposal.block.header.height);
 
         Ok(())
     }