Skip to content

Commit 122f51f

Browse files
authored
remove spurious error lines (aptos-labs#12137)
1 parent 5256800 commit 122f51f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

consensus/src/quorum_store/batch_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ impl BatchStore {
349349
match self.db.get_batch(digest) {
350350
Ok(Some(value)) => Ok(value),
351351
Ok(None) | Err(_) => {
352-
error!("Could not get batch from db");
352+
warn!("Could not get batch from db");
353353
Err(ExecutorError::CouldNotGetData)
354354
},
355355
}

consensus/src/round_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ impl RoundManager {
777777
while start.elapsed() < Duration::from_millis(timeout_ms) {
778778
if !block_store.vote_back_pressure() {
779779
if let Err(e) = self_sender.push(author, event) {
780-
error!("Failed to send event to round manager {:?}", e);
780+
warn!("Failed to send event to round manager {:?}", e);
781781
}
782782
break;
783783
}

0 commit comments

Comments
 (0)