Skip to content

Commit

Permalink
ref(download): Simplify debug logging output (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
Floris Bruynooghe authored Aug 24, 2021
1 parent c1f32ae commit f2f594f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/symbolicator/src/services/download/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ impl DownloadService {
Ok(status) => {
match status {
DownloadStatus::Completed => {
log::debug!("Fetched debug file from {}: {:?}", source, status);
log::debug!("Fetched debug file from {}", source);
}
DownloadStatus::NotFound => {
log::debug!("Did not fetch debug file from {}: {:?}", source, status);
log::debug!("Debug file not found at {}", source);
}
};
Ok(status)
Expand Down

0 comments on commit f2f594f

Please sign in to comment.