Skip to content

Commit ee0fb00

Browse files
committed
reduce vebose buffermanager log
1 parent 6f6ce95 commit ee0fb00

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

consensus/src/pipeline/buffer_manager.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,9 +389,11 @@ impl BufferManager {
389389
} = ordered_blocks;
390390

391391
info!(
392-
"Receive {} ordered block ends with {}, the queue size is {}",
392+
"Receive {} ordered block ends with [epoch: {}, round: {}, id: {}], the queue size is {}",
393393
ordered_blocks.len(),
394-
ordered_proof.commit_info(),
394+
ordered_proof.commit_info().epoch(),
395+
ordered_proof.commit_info().round(),
396+
ordered_proof.commit_info().id(),
395397
self.buffer.len() + 1,
396398
);
397399

consensus/src/pipeline/pipeline_builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use aptos_crypto::HashValue;
2929
use aptos_executor_types::{state_compute_result::StateComputeResult, BlockExecutorTrait};
3030
use aptos_experimental_runtimes::thread_manager::optimal_min_len;
3131
use aptos_infallible::Mutex;
32-
use aptos_logger::{debug, error, info, trace, warn};
32+
use aptos_logger::{error, info, trace, warn};
3333
use aptos_types::{
3434
block_executor::config::BlockExecutorConfigFromOnchain,
3535
ledger_info::{LedgerInfo, LedgerInfoWithSignatures},

0 commit comments

Comments
 (0)