Lower recovery messages (#5181)

This commit is contained in:
sakridge 2019-07-19 09:20:14 -07:00 committed by GitHub
parent a21251dfea
commit 8b69998379
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1588,7 +1588,7 @@ fn handle_recovery(
} }
if !recovered_coding.is_empty() { if !recovered_coding.is_empty() {
info!( debug!(
"[handle_recovery] recovered {} coding blobs", "[handle_recovery] recovered {} coding blobs",
recovered_coding.len() recovered_coding.len()
); );
@ -1637,7 +1637,7 @@ fn handle_recovery(
} }
} }
info!("[handle_recovery] recovered {} data blobs", new_data.len()); debug!("[handle_recovery] recovered {} data blobs", new_data.len());
Ok(Some(new_data)) Ok(Some(new_data))
} else { } else {