Skip to content

Commit f9b0661

Browse files
committed
extend logs
Signed-off-by: ashcherbakov <[email protected]>
1 parent d8b78b1 commit f9b0661

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

plenum/server/node.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3304,6 +3304,14 @@ def commitAndSendReplies(self, three_pc_batch: ThreePcBatch) -> List:
33043304
# in between catchup rounds, then the 3PC batch will not be applied,
33053305
# since it was reverted before catchup started, and only COMMITs were
33063306
# processed in between catchup that led to this ORDERED msg
3307+
logger.info("{} applying stashed requests for batch {} {} of {} requests; state root {}; txn root {}"
3308+
.format(self.name,
3309+
three_pc_batch.view_no,
3310+
three_pc_batch.pp_seq_no,
3311+
len(three_pc_batch.valid_digests),
3312+
three_pc_batch.state_root,
3313+
three_pc_batch.txn_root))
3314+
33073315
self.apply_stashed_reqs(three_pc_batch)
33083316

33093317
reqHandler = self.get_req_handler(three_pc_batch.ledger_id)

0 commit comments

Comments
 (0)