Remove prints

This commit is contained in:
Michael Vines
2019-03-05 13:26:59 -08:00
parent e7eafbd24e
commit 1997640094
3 changed files with 5 additions and 5 deletions

View File

@ -121,7 +121,7 @@ pub fn process_blocktree(
let meta = blocktree
.meta(slot)
.map_err(|err| {
eprintln!("Failed to load meta for slot {}: {:?}", slot, err);
warn!("Failed to load meta for slot {}: {:?}", slot, err);
BankError::LedgerVerificationFailed
})?
.unwrap();
@ -194,7 +194,7 @@ pub fn process_blocktree(
let next_meta = blocktree
.meta(next_slot)
.map_err(|err| {
eprintln!("Failed to load meta for slot {}: {:?}", slot, err);
warn!("Failed to load meta for slot {}: {:?}", slot, err);
BankError::LedgerVerificationFailed
})?
.unwrap();