Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
include asan_text in log message as intended (#1092)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmc-msft authored Jul 20, 2021
1 parent 9c30183 commit 1bd4f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/onefuzz/src/asan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pub async fn check_asan_path(asan_dir: &Path) -> Result<Option<CrashLog>> {
asan_text.truncate(ASAN_LOG_TRUNCATE_SIZE);
asan_text.push_str("...<truncated>");
}
format_err!("unable to parse asan log {}: {:?}")
format_err!("unable to parse asan log: {:?}", asan_text)
})?;
return Ok(Some(asan));
}
Expand Down

0 comments on commit 1bd4f33

Please sign in to comment.