We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5256800 commit 122f51fCopy full SHA for 122f51f
consensus/src/quorum_store/batch_store.rs
@@ -349,7 +349,7 @@ impl BatchStore {
349
match self.db.get_batch(digest) {
350
Ok(Some(value)) => Ok(value),
351
Ok(None) | Err(_) => {
352
- error!("Could not get batch from db");
+ warn!("Could not get batch from db");
353
Err(ExecutorError::CouldNotGetData)
354
},
355
}
consensus/src/round_manager.rs
@@ -777,7 +777,7 @@ impl RoundManager {
777
while start.elapsed() < Duration::from_millis(timeout_ms) {
778
if !block_store.vote_back_pressure() {
779
if let Err(e) = self_sender.push(author, event) {
780
- error!("Failed to send event to round manager {:?}", e);
+ warn!("Failed to send event to round manager {:?}", e);
781
782
break;
783
0 commit comments